summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Endsley <mendsley@gmail.com>2012-05-14 02:10:18 -0700
committerMatthew Endsley <mendsley@gmail.com>2012-05-14 02:10:18 -0700
commit15a8a2503e3a84e5a403c1ddffb1d0cace5f1702 (patch)
tree930676e5869707bb6dba2a704b42c69634b820df
parentf38045c929e3f76cb5e6357e79d826d61143c42f (diff)
downloadbsdiff-15a8a2503e3a84e5a403c1ddffb1d0cace5f1702.tar.gz
bspatch error should be errx instead of err
-rw-r--r--bspatch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bspatch.c b/bspatch.c
index 9265a96..d9929b8 100644
--- a/bspatch.c
+++ b/bspatch.c
@@ -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);