diff options
Diffstat (limited to 'backend/hp3900_debug.c')
-rw-r--r-- | backend/hp3900_debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/hp3900_debug.c b/backend/hp3900_debug.c index eb7d45c..b8cd8f1 100644 --- a/backend/hp3900_debug.c +++ b/backend/hp3900_debug.c @@ -764,7 +764,7 @@ dbg_buffer (SANE_Int level, char *title, SANE_Byte * buffer, SANE_Int size, bzero (&text, sizeof (text)); } data = _B0 (buffer[cont]); - text[col] = (data > 31) ? data : '·'; + text[col] = (data > 31) ? data : '·'; snprintf (sdata, 80, "%02x ", data); sline = strcat (sline, sdata); col++; |