diff options
author | Jeremy Allison <jra@samba.org> | 2000-11-10 21:24:09 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2000-11-10 21:24:09 +0000 |
commit | 6cc6a4f3f36e9ee071dcb01f16ee2bd2eb7de4a0 (patch) | |
tree | caa2a4f7e62f7c6b113d884e5fdfda82ed2fd6af /source3/tdb | |
parent | c1900772ce6fdedc5c380d88f3640107d52e2096 (diff) | |
download | samba-6cc6a4f3f36e9ee071dcb01f16ee2bd2eb7de4a0.tar.gz samba-6cc6a4f3f36e9ee071dcb01f16ee2bd2eb7de4a0.tar.bz2 samba-6cc6a4f3f36e9ee071dcb01f16ee2bd2eb7de4a0.zip |
rpc_parse/parse_spoolss.c: Updated comment for old version of W2K.
tdb/tdbutil.c: With varargs uint16 is cast to (int).
Jeremy.
(This used to be commit 98764c5df9f363780427a423ead0913f7b2a0905)
Diffstat (limited to 'source3/tdb')
-rw-r--r-- | source3/tdb/tdbutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/tdb/tdbutil.c b/source3/tdb/tdbutil.c index ac7a5e2e90..92b8f9cbfb 100644 --- a/source3/tdb/tdbutil.c +++ b/source3/tdb/tdbutil.c @@ -140,7 +140,7 @@ size_t tdb_pack(char *buf, int bufsize, char *fmt, ...) switch ((c = *fmt++)) { case 'w': len = 2; - w = va_arg(ap, uint16); + w = (uint16)va_arg(ap, int); if (bufsize >= len) { SSVAL(buf, 0, w); } |