diff options
author | Anthony Ramine <[email protected]> | 2013-02-09 13:37:37 +0100 |
---|---|---|
committer | Anthony Ramine <[email protected]> | 2013-04-27 13:54:20 +0200 |
commit | 01824e46557807f21df4db973e7f814e73bd36f8 (patch) | |
tree | 308d55f4e601ab20fdefa4560a2552f9f9b3abf7 /erts/emulator/drivers/win32 | |
parent | 7e9ae3007fd3c44a05a746628983faff401dfd0c (diff) | |
download | otp-01824e46557807f21df4db973e7f814e73bd36f8.tar.gz otp-01824e46557807f21df4db973e7f814e73bd36f8.tar.bz2 otp-01824e46557807f21df4db973e7f814e73bd36f8.zip |
Fix bogus DEBUGLOG() incantations in ttsl_drv
Diffstat (limited to 'erts/emulator/drivers/win32')
-rw-r--r-- | erts/emulator/drivers/win32/ttsl_drv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/drivers/win32/ttsl_drv.c b/erts/emulator/drivers/win32/ttsl_drv.c index 1a74d21e99..8b5e3eeefd 100644 --- a/erts/emulator/drivers/win32/ttsl_drv.c +++ b/erts/emulator/drivers/win32/ttsl_drv.c @@ -414,12 +414,12 @@ static int check_buf_size(byte *s, int n) } if (utf8_mode) { /* That is, terminal is UTF8 compliant */ if (ch >= 128 || isprint(ch)) { - DEBUGLOG(("Printable(UTF-8:%d):%d",(pos - opos),ch)); + DEBUGLOG(("Printable(UTF-8:%d):%d",pos,ch)); size++; /* Buffer contains wide characters... */ } else if (ch == '\t') { size += 8; } else { - DEBUGLOG(("Magic(UTF-8:%d):%d",(pos - opos),ch)); + DEBUGLOG(("Magic(UTF-8:%d):%d",pos,ch)); size += 2; } } else { |