Mercurial > audlegacy-plugins
changeset 2615:feb7baf8da52
A stray semicolon (';') at end of if-statement made a function end
unconditionally, fixed.
| author | Matti Hamalainen <ccr@tnsp.org> |
|---|---|
| date | Wed, 21 May 2008 17:26:47 +0300 |
| parents | 54cc30de94ab |
| children | f0d57c48e518 |
| files | src/modplug/archive/arch_bz2.cxx |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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;
