mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
rdflib.c (main): change incorrect break statement to /* fall through */
Commit 6d36d8684
added a wrong break statement to case 'x'
in rdflib.c::main() at line235. That case 'x' must "fall
through" into case 't' which re-checks the argument.
Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
This commit is contained in:
parent
741967033e
commit
c0ab5a8be9
@ -234,7 +234,7 @@ int main(int argc, char **argv)
|
||||
fprintf(stderr, "rdflib: required parameter missing\n");
|
||||
exit(1);
|
||||
}
|
||||
break;
|
||||
/* fall through */
|
||||
case 't':
|
||||
fp = fopen(argv[2], "rb");
|
||||
if (!fp) {
|
||||
|
Loading…
Reference in New Issue
Block a user