Collectcatkeys: PVS1632: unsafe fprintf (harmless).
This commit is contained in:
@@ -57,7 +57,7 @@ usage()
|
|||||||
" -r <regex>\t\tchanges the regex used by the key-scanner to the one "
|
" -r <regex>\t\tchanges the regex used by the key-scanner to the one "
|
||||||
"given,\n"
|
"given,\n"
|
||||||
" \t\t\tthe default is: ");
|
" \t\t\tthe default is: ");
|
||||||
fprintf(stderr, rxString.String());
|
fprintf(stderr, "%s", rxString.String());
|
||||||
fprintf(stderr,"\n -s <catalogSig>\tsignature of the target-catalog\n"
|
fprintf(stderr,"\n -s <catalogSig>\tsignature of the target-catalog\n"
|
||||||
" -v\t\t\tbe verbose, show summary\n"
|
" -v\t\t\tbe verbose, show summary\n"
|
||||||
" -w\t\t\tshow warnings about catalog-accesses that couldn't be "
|
" -w\t\t\tshow warnings about catalog-accesses that couldn't be "
|
||||||
@@ -247,8 +247,7 @@ main(int argc, char **argv)
|
|||||||
else if (c == 'o') {
|
else if (c == 'o') {
|
||||||
outputFile = (++argv)[0];
|
outputFile = (++argv)[0];
|
||||||
break;
|
break;
|
||||||
}
|
} else if (c == 'r') {
|
||||||
else if (c == 'r') {
|
|
||||||
rxString = (++argv)[0];
|
rxString = (++argv)[0];
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user