diff options
author | Richard Sharpe <rsharpe@nutanix.com> | 2015-05-15 14:56:25 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2015-05-16 03:09:12 +0200 |
commit | 12df833563034573f62d61c69b4abf38b95d1a18 (patch) | |
tree | e0cfdfdc3c8ec78ca973d7882e58559913e496d8 /source3/printing | |
parent | d1278f081bbb1e3e9904450916993712eff2d9df (diff) | |
download | samba-12df833563034573f62d61c69b4abf38b95d1a18.tar.gz |
Convert the few instances of int32 there were to int32_t.
Signed-off-by: Richard Sharpe <rsharpe@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Autobuild-User(master): Jeremy Allison <jra@samba.org>
Autobuild-Date(master): Sat May 16 03:09:12 CEST 2015 on sn-devel-104
Diffstat (limited to 'source3/printing')
-rw-r--r-- | source3/printing/printing.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/printing/printing.c b/source3/printing/printing.c index 0328e744ca5..4a2ffd17ca7 100644 --- a/source3/printing/printing.c +++ b/source3/printing/printing.c @@ -1545,7 +1545,7 @@ static void print_queue_update_internal(struct tevent_context *ev, */ slprintf(keystr, sizeof(keystr)-1, "CACHE/%s", sharename); - tdb_store_int32(pdb->tdb, keystr, (int32)time(NULL)); + tdb_store_int32(pdb->tdb, keystr, (int32_t)time(NULL)); /* clear the msg pending record for this queue */ |