Skip to content

Commit

Permalink
fixed uninitialized variable warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Szabo committed Jan 9, 2014
1 parent cba7567 commit caef4d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion png22pnm.c
Original file line number Diff line number Diff line change
Expand Up @@ -1162,7 +1162,7 @@ FILE *tfp;
}
break;
default:
assert(0);
assert(0); abort();
}
fwrite(rowa, 1, len, so);
pm_freerow(rowa);
Expand Down

0 comments on commit caef4d0

Please sign in to comment.