summaryrefslogtreecommitdiff
path: root/source4/libcli/raw/request.h
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2006-09-07 09:49:34 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:17:50 -0500
commit1b5c28a627fa7d5f185537c85a43c7629273a2d9 (patch)
tree5a91716865dff5769ded38b4c0bc4e38a8af4a76 /source4/libcli/raw/request.h
parentaf1b64c92fe5d8164a654865930bf2fd85b03b28 (diff)
downloadsamba-1b5c28a627fa7d5f185537c85a43c7629273a2d9.tar.gz
samba-1b5c28a627fa7d5f185537c85a43c7629273a2d9.tar.bz2
samba-1b5c28a627fa7d5f185537c85a43c7629273a2d9.zip
r18211: wct is not a size, so don't use size_t
this should fix a pile of printf format warnings (This used to be commit fe209e360e3857f39355335e4fa6a43b2db23038)
Diffstat (limited to 'source4/libcli/raw/request.h')
-rw-r--r--source4/libcli/raw/request.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libcli/raw/request.h b/source4/libcli/raw/request.h
index fedebf4c8d..689a5281ce 100644
--- a/source4/libcli/raw/request.h
+++ b/source4/libcli/raw/request.h
@@ -45,7 +45,7 @@ struct request_buffer {
/* the command words and command word count. vwv points
into the raw buffer */
uint8_t *vwv;
- size_t wct;
+ uint_t wct;
/* the data buffer and size. data points into the raw buffer */
uint8_t *data;