We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0e4aa1 commit b038c7dCopy full SHA for b038c7d
1 file changed
test/tjbench.c
@@ -586,7 +586,7 @@ int main(int argc, char *argv[])
586
if(!strcasecmp(argv[i], "-bottomup")) flags|=TJFLAG_BOTTOMUP;
587
if(!strcasecmp(argv[i], "-quiet")) quiet=1;
588
if(!strcasecmp(argv[i], "-qq")) quiet=2;
589
- if(!strcasecmp(argv[i], "-scale") && i<argc-1)
+ if(i<argc-1 && !strcasecmp(argv[i], "-scale"))
590
{
591
int temp1=0, temp2=0, match=0;
592
if(sscanf(argv[++i], "%d/%d", &temp1, &temp2)==2)
0 commit comments