diff options
author | Tim Potter <tpot@samba.org> | 2003-11-03 14:34:25 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-11-03 14:34:25 +0000 |
commit | fbb8f131c2336e921677f41e9fb8bce7406f3336 (patch) | |
tree | d7af30424bebfbcbc6cf0d891bbd04c5deb74855 /source3/smbd/statcache.c | |
parent | 490dbaec81007a9b5dd3aabfc188bdb397927e78 (diff) | |
download | samba-fbb8f131c2336e921677f41e9fb8bce7406f3336.tar.gz |
Fix more 64-bit printf warnings.
(This used to be commit 23443e3aa079710221557e18158d0ddb8ff48a36)
Diffstat (limited to 'source3/smbd/statcache.c')
-rw-r--r-- | source3/smbd/statcache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/statcache.c b/source3/smbd/statcache.c index 76406f208e5..d996f5e4938 100644 --- a/source3/smbd/statcache.c +++ b/source3/smbd/statcache.c @@ -119,8 +119,8 @@ void stat_cache_add( const char *full_orig_name, const char *orig_translated_pat if (original_path_length != translated_path_length) { if (original_path_length < translated_path_length) { - DEBUG(0, ("OOPS - tried to store stat cache entry for weird length paths [%s] %u and [%s] %u)!\n", - original_path, original_path_length, translated_path, translated_path_length)); + DEBUG(0, ("OOPS - tried to store stat cache entry for weird length paths [%s] %lu and [%s] %lu)!\n", + original_path, (unsigned long)original_path_length, translated_path, (unsigned long)translated_path_length)); SAFE_FREE(original_path); SAFE_FREE(translated_path); return; |