Skip to content

Commit

Permalink
Fixed uninitialised variable warning.
Browse files Browse the repository at this point in the history
(This used to be commit 5095941)
  • Loading branch information
Tim Potter committed Dec 18, 2001
1 parent 95a4903 commit 7cb202e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source3/printing/printing.c
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,7 @@ int print_job_start(struct current_user *user, int snum, char *jobname)
struct printjob pjob;
int next_jobid;
user_struct *vuser;
int njobs;
int njobs = 0;

errno = 0;

Expand Down

0 comments on commit 7cb202e

Please sign in to comment.