File tree 2 files changed +8
-7
lines changed
2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -402,16 +402,17 @@ int main(int argc, const char **argv)
402
402
{
403
403
result = gzread (gz, buffer, BUFFER_SIZE);
404
404
if (result < 0 )
405
- {
406
- unpack_error:
407
- printf (" Unpack ERROR %d\n " , result);
408
- exit (1 );
409
- }
405
+ goto unpack_error;
410
406
unpSize += result;
411
407
}
412
408
413
409
result = gzclose (gz);
414
- if (result != Z_OK) goto unpack_error;
410
+ if (result != Z_OK)
411
+ {
412
+ unpack_error:
413
+ printf (" Unpack ERROR %d\n " , result);
414
+ exit (1 );
415
+ }
415
416
416
417
unpackClocks += clock () - clock_a;
417
418
}
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ EXEDIR = $R/obj/bin
23
23
24
24
!if "$COMPILER" eq "GnuC"
25
25
# linux/cygwin + GCC
26
- STDLIBS = stdc++ m GL # libm for math.h functions
26
+ STDLIBS = stdc++
27
27
!if "$PLATFORM" ne "cygwin"
28
28
STDLIBS += dl # dlopen() and friends
29
29
!endif
You can’t perform that action at this time.
0 commit comments