diff options
author | Jeremy Allison <jra@samba.org> | 1998-09-18 00:12:15 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-09-18 00:12:15 +0000 |
commit | 1e17cbd2a3db061c8638ee8566ded53d14878bca (patch) | |
tree | 6175acdc16153a363d8613f58efd3a0f17413d51 /source3/nmbd | |
parent | b8b67f4fab4a6fd686c5796c2701882197a7bd9d (diff) | |
download | samba-1e17cbd2a3db061c8638ee8566ded53d14878bca.tar.gz samba-1e17cbd2a3db061c8638ee8566ded53d14878bca.tar.xz samba-1e17cbd2a3db061c8638ee8566ded53d14878bca.zip |
nmbd/nmbd_winsserver.c: Fixed printf style warning.
script/mkproto.awk: Added SMB_BIG_UINT.
Jeremy.
(This used to be commit c22c40f0caa7d6a9e8120e6415fa728db708db3e)
Diffstat (limited to 'source3/nmbd')
-rw-r--r-- | source3/nmbd/nmbd_winsserver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nmbd/nmbd_winsserver.c b/source3/nmbd/nmbd_winsserver.c index 72386bd55ba..1ce9160deac 100644 --- a/source3/nmbd/nmbd_winsserver.c +++ b/source3/nmbd/nmbd_winsserver.c @@ -1563,7 +1563,7 @@ void wins_write_database(BOOL background) } } - slprintf(fname,sizeof(fname),"%s/%s.%d", lp_lockdir(), WINS_LIST, getpid()); + slprintf(fname,sizeof(fname),"%s/%s.%d", lp_lockdir(), WINS_LIST, (unsigned int)getpid()); string_sub(fname,"//", "/"); if((fp = fopen(fnamenew,"w")) == NULL) |