Mercurial > msvpvf
comparison msvpvf.c @ 5:92ec47e63923
Add missing semicolon
| author | Paper <mrpapersonic@gmail.com> |
|---|---|
| date | Fri, 21 Jan 2022 01:53:58 -0500 |
| parents | 78a0ecd756da |
| children |
comparison
equal
deleted
inserted
replaced
| 4:78a0ecd756da | 5:92ec47e63923 |
|---|---|
| 176 #elif defined(__unix__) | 176 #elif defined(__unix__) |
| 177 if (strcspn(args.input, "/") == strlen(args.input)+1) { | 177 if (strcspn(args.input, "/") == strlen(args.input)+1) { |
| 178 #else | 178 #else |
| 179 if (NULL) { | 179 if (NULL) { |
| 180 #endif | 180 #endif |
| 181 fprintf(stderr, "Invalid output filename detected! Exiting...") | 181 fprintf(stderr, "Invalid output filename detected! Exiting..."); |
| 182 return 1; | 182 return 1; |
| 183 } | 183 } |
| 184 outfile = fopen(args.output, "r+b"); | 184 outfile = fopen(args.output, "r+b"); |
| 185 if (outfile == NULL) { | 185 if (outfile == NULL) { |
| 186 fprintf(stderr, "Failed to open file %s! Is the filename invalid?", args.output); | 186 fprintf(stderr, "Failed to open file %s! Is the filename invalid?", args.output); |
