diff options
author | Gerald Carter <jerry@samba.org> | 2004-03-05 17:39:59 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2004-03-05 17:39:59 +0000 |
commit | 2aaba6696cca6a0579ff301b3d0e31efc041efb3 (patch) | |
tree | ba9be3af11f67a3eb48c8a36064e12353ed0971d /source3/printing/printing.c | |
parent | 19e94da7602a69fa2dce33b64fadfbb1fce40c95 (diff) | |
download | samba-2aaba6696cca6a0579ff301b3d0e31efc041efb3.tar.gz samba-2aaba6696cca6a0579ff301b3d0e31efc041efb3.tar.bz2 samba-2aaba6696cca6a0579ff301b3d0e31efc041efb3.zip |
fix compiler warning
(This used to be commit 7153cbf8cbb07d4e7a9dc9adc9e0a40c57a6e305)
Diffstat (limited to 'source3/printing/printing.c')
-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 1efd932749..ad11108a5a 100644 --- a/source3/printing/printing.c +++ b/source3/printing/printing.c @@ -658,7 +658,7 @@ static int traverse_fn_delete(TDB_CONTEXT *t, TDB_DATA key, TDB_DATA data, void struct traverse_struct *ts = (struct traverse_struct *)state; struct printjob pjob; uint32 jobid; - int i; + int i = 0; if ( key.dsize != sizeof(jobid) ) return 0; |