Skip to content

Commit

Permalink
bspatch error should be errx instead of err
Browse files Browse the repository at this point in the history
  • Loading branch information
mendsley committed May 14, 2012
1 parent f38045c commit 15a8a25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bspatch.c
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ int main(int argc,char * argv[])
req.stream.read = bz2_read;
req.stream.opaque = bz2;
if (bspatch(req))
err(1, "bspatch");
errx(1, "bspatch");

/* Clean up the bzip2 reads */
BZ2_bzReadClose(&bz2err, bz2);
Expand Down

0 comments on commit 15a8a25

Please sign in to comment.