summaryrefslogtreecommitdiff
path: root/source3/include/byteorder.h
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1997-10-12 19:02:55 +0000
committerLuke Leighton <lkcl@samba.org>1997-10-12 19:02:55 +0000
commitdb20ab9bbdcc8fbfa81883c2d0c952386820de4c (patch)
treee00fa04a539515987bbfaa4f5585f4209e00b499 /source3/include/byteorder.h
parent78f6bc4eba9f6d68c31b1c7e35243a1b81619b0d (diff)
downloadsamba-db20ab9bbdcc8fbfa81883c2d0c952386820de4c.tar.gz
samba-db20ab9bbdcc8fbfa81883c2d0c952386820de4c.tar.bz2
samba-db20ab9bbdcc8fbfa81883c2d0c952386820de4c.zip
getting somewhere.
ipc.c : removed srvsvc pipe reference: have to do that. pipes.c lsaparse.c smbparse.c : more debugging info. looks a bit like netmon output. (This used to be commit e02aa88e25ae6d4da7953aaff04ff2ae9a656d05)
Diffstat (limited to 'source3/include/byteorder.h')
-rw-r--r--source3/include/byteorder.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/include/byteorder.h b/source3/include/byteorder.h
index e8989ee7e4..c0e38adc2b 100644
--- a/source3/include/byteorder.h
+++ b/source3/include/byteorder.h
@@ -215,15 +215,15 @@ it also defines lots of intermediate macros, just ignore those :-)
#define DBG_RW_CVAL(string,depth,base,read,inbuf,outbuf) \
RW_CVAL(read,inbuf,outbuf,0) \
DEBUG(5,("%s %04x %s: %02x\n", \
- tab_depth(depth), PTR_DIFF(inbuf,base),string, (unsigned int)*(inbuf)));
+ tab_depth(depth), PTR_DIFF(inbuf,base),string, *(inbuf)));
#define DBG_RW_SVAL(string,depth,base,read,inbuf,outbuf) \
RW_SVAL(read,inbuf,outbuf,0) \
DEBUG(5,("%s %04x %s: %04x\n", \
- tab_depth(depth), PTR_DIFF(inbuf,base),string, (unsigned int)*(inbuf)));
+ tab_depth(depth), PTR_DIFF(inbuf,base),string, *(inbuf)));
#define DBG_RW_IVAL(string,depth,base,read,inbuf,outbuf) \
RW_IVAL(read,inbuf,outbuf,0) \
DEBUG(5,("%s %04x %s: %08x\n", \
- tab_depth(depth), PTR_DIFF(inbuf,base),string, (unsigned int)*(inbuf)));
+ tab_depth(depth), PTR_DIFF(inbuf,base),string, *(inbuf)));