Skip to content

Commit

Permalink
[bit2pdf] Fix uninitialized variable
Browse files Browse the repository at this point in the history
  • Loading branch information
jbnote committed Dec 29, 2007
1 parent 643e704 commit 695eead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bit2pdf.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ draw_bitstream(const bitstream_analyzed_t *nlz, const gchar *lofile,
chip_descr_t *chip = nlz->chip;
cairo_surface_t *sr;
cairo_t *cr;
int err;
int err = 0;

/* extract size from chip size */
switch (out) {
Expand Down

0 comments on commit 695eead

Please sign in to comment.