summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTill Lorentzen <git@as-it-should.be>2014-04-18 13:58:42 +0200
committerTill Lorentzen <git@as-it-should.be>2014-04-18 13:58:42 +0200
commit7197142a63536a339d913b86eff42cee7bfb5032 (patch)
treed9ba2f1a91b6b8d1d2675e1af26c348cf1d0cc64
parentce07a29894acd74c52b975a42c02f11d9483566a (diff)
downloadbsdiff-7197142a63536a339d913b86eff42cee7bfb5032.tar.gz
Added missing semicolon
Should fix issue #3
-rw-r--r--bspatch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bspatch.c b/bspatch.c
index 7de0a08..71d259f 100644
--- a/bspatch.c
+++ b/bspatch.c
@@ -158,7 +158,7 @@ int main(int argc,char * argv[])
errx(1, "Corrupt patch\n");
/* Read lengths from header */
- newsize=offtin(header+16)
+ newsize=offtin(header+16);
if(newsize<0)
errx(1,"Corrupt patch\n");