diff options
author | Jeremy Allison <jra@samba.org> | 2011-02-09 10:43:56 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2011-02-09 21:21:04 +0100 |
commit | c377b0e71893e2c054a179aa6e3f8c6742be0371 (patch) | |
tree | 0c0b8025b61fdede776a4e84f78002a7fdcf8437 /source3/lib | |
parent | 344e4cd2801805faf38b86f7f33b05e204452532 (diff) | |
download | samba-c377b0e71893e2c054a179aa6e3f8c6742be0371.tar.gz samba-c377b0e71893e2c054a179aa6e3f8c6742be0371.tar.bz2 samba-c377b0e71893e2c054a179aa6e3f8c6742be0371.zip |
Fix up some buildfarm warnings.
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/dbwrap_util.c | 2 | ||||
-rw-r--r-- | source3/lib/system.c | 2 | ||||
-rw-r--r-- | source3/lib/util_str.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/source3/lib/dbwrap_util.c b/source3/lib/dbwrap_util.c index 8ebc4f474f..0020fc675e 100644 --- a/source3/lib/dbwrap_util.c +++ b/source3/lib/dbwrap_util.c @@ -118,7 +118,7 @@ static NTSTATUS dbwrap_change_uint32_atomic_action(struct db_context *db, void *private_data) { struct db_record *rec; - uint32 val = -1; + uint32_t val = (uint32_t)-1; uint32_t v_store; NTSTATUS ret; struct dbwrap_change_uint32_atomic_context *state; diff --git a/source3/lib/system.c b/source3/lib/system.c index 57434f2d42..1783fda6ab 100644 --- a/source3/lib/system.c +++ b/source3/lib/system.c @@ -2716,7 +2716,7 @@ int sys_getnameinfo(const struct sockaddr *psa, int sys_connect(int fd, const struct sockaddr * addr) { - socklen_t salen = -1; + socklen_t salen = (socklen_t)-1; if (addr->sa_family == AF_INET) { salen = sizeof(struct sockaddr_in); diff --git a/source3/lib/util_str.c b/source3/lib/util_str.c index fcc4b8d54c..6edf64deea 100644 --- a/source3/lib/util_str.c +++ b/source3/lib/util_str.c @@ -2020,7 +2020,7 @@ char *base64_encode_data_blob(TALLOC_CTX *mem_ctx, DATA_BLOB data) uint64_t STR_TO_SMB_BIG_UINT(const char *nptr, const char **entptr) { - uint64_t val = -1; + uint64_t val = (uint64_t)-1; const char *p = nptr; if (!p) { |