summaryrefslogtreecommitdiff
path: root/source3/namepacket.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/namepacket.c')
-rw-r--r--source3/namepacket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/namepacket.c b/source3/namepacket.c
index 55b525d6c5..086e32d908 100644
--- a/source3/namepacket.c
+++ b/source3/namepacket.c
@@ -65,7 +65,7 @@ void debug_browse_data(char *outbuf, int len)
for (j = 0; j < 16; j++)
{
if (i+j >= len) break;
- DEBUG(4, (" %02x", outbuf[i+j]));
+ DEBUG(4, (" %02x", (unsigned char)outbuf[i+j]));
}
DEBUG(4, ("\n"));