mirror of
https://github.com/cc65/cc65.git
synced 2024-12-26 08:32:00 +00:00
Some clean-up
One exit() too much file is not optional
This commit is contained in:
parent
395e072c3b
commit
f8a940bce4
@ -1,4 +1,3 @@
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@ -7,8 +6,7 @@ unsigned int n, i, c;
|
||||
|
||||
void usage(char *arg)
|
||||
{
|
||||
printf("usage: %s [file]\n", arg);
|
||||
exit(-1);
|
||||
printf("usage: %s file\n", arg);
|
||||
}
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
@ -33,5 +31,5 @@ int main(int argc, char *argv[]) {
|
||||
fputc((n >> 8) & 0xff, in);
|
||||
|
||||
fclose(in);
|
||||
return (0);
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user