# HG changeset patch # User Matti Hamalainen # Date 1211380007 -10800 # Node ID feb7baf8da520c10e0b6c8b4b7517ed946edac6d # Parent 54cc30de94abda9f16a85777eb486ea9e6a650bf A stray semicolon (';') at end of if-statement made a function end unconditionally, fixed. diff -r 54cc30de94ab -r feb7baf8da52 src/modplug/archive/arch_bz2.cxx --- a/src/modplug/archive/arch_bz2.cxx Wed May 21 16:12:50 2008 +0200 +++ b/src/modplug/archive/arch_bz2.cxx Wed May 21 17:26:47 2008 +0300 @@ -40,7 +40,7 @@ return; } - if(fscanf(f, "%u", &mSize) != 1); // this is the size. + if(fscanf(f, "%u", &mSize) != 1) // this is the size. { mSize = 0; return;