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:
sezero 2019-10-04 23:04:32 +03:00 committed by H. Peter Anvin (Intel)
parent 741967033e
commit c0ab5a8be9

View File

@ -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) {