exit from main instead of return
This commit is contained in:
parent
73246f3824
commit
18439ffa3f
1 changed files with 1 additions and 1 deletions
|
@ -265,7 +265,7 @@ main(argc, argv)
|
||||||
header();
|
header();
|
||||||
|
|
||||||
if ( outputfile_created ) chmod(argv[2],0755);
|
if ( outputfile_created ) chmod(argv[2],0755);
|
||||||
return 0;
|
exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
#define shortcvt(val, p) (*p++ = val, *p++ = val >> 8)
|
#define shortcvt(val, p) (*p++ = val, *p++ = val >> 8)
|
||||||
|
|
Loading…
Add table
Reference in a new issue