diff options
author | pfg <pfg@FreeBSD.org> | 2016-04-15 22:31:22 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2016-04-15 22:31:22 +0000 |
commit | 26c891f0342597b83a8dc9b7e9bb67b9728d84ad (patch) | |
tree | f34884b5132e36e8b0946f07dc1cf090047af8fb /usr.bin/bsdiff/bspatch | |
parent | 838cf0e4a7fd404e6b3424987e6151ba9e987623 (diff) | |
download | FreeBSD-src-26c891f0342597b83a8dc9b7e9bb67b9728d84ad.zip FreeBSD-src-26c891f0342597b83a8dc9b7e9bb67b9728d84ad.tar.gz |
Cleanup unnecessary semicolons from utilities we all love.
Diffstat (limited to 'usr.bin/bsdiff/bspatch')
-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 db72e5c..eb99e5b 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); |