diff options
author | Pedro F. Giffuni <pfg@FreeBSD.org> | 2016-04-15 22:31:22 +0000 |
---|---|---|
committer | Pedro F. Giffuni <pfg@FreeBSD.org> | 2016-04-15 22:31:22 +0000 |
commit | 80c7cc1c8f027fcf5d5f0a2df4b9aef6904ed079 (patch) | |
tree | f34884b5132e36e8b0946f07dc1cf090047af8fb /usr.bin/bsdiff/bspatch/bspatch.c | |
parent | 14a0ca29fe703fdb1903fd229ad762a1192690c7 (diff) |
Notes
Diffstat (limited to 'usr.bin/bsdiff/bspatch/bspatch.c')
-rw-r--r-- | usr.bin/bsdiff/bspatch/bspatch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/bsdiff/bspatch/bspatch.c b/usr.bin/bsdiff/bspatch/bspatch.c index db72e5c70236..eb99e5ba16a0 100644 --- a/usr.bin/bsdiff/bspatch/bspatch.c +++ b/usr.bin/bsdiff/bspatch/bspatch.c @@ -161,7 +161,7 @@ int main(int argc,char * argv[]) (cbz2err != BZ_STREAM_END))) errx(1, "Corrupt patch\n"); ctrl[i]=offtin(buf); - }; + } /* Sanity-check */ if(newpos+ctrl[0]>newsize) @@ -195,7 +195,7 @@ int main(int argc,char * argv[]) /* Adjust pointers */ newpos+=ctrl[1]; oldpos+=ctrl[2]; - }; + } /* Clean up the bzip2 reads */ BZ2_bzReadClose(&cbz2err, cpfbz2); |