Fix the order of some logic, and fix the eval syntax

This commit is contained in:
Bradlee Speice
2012-08-03 14:12:02 -04:00
parent 86b8c7023e
commit 13ed45e9da
2 changed files with 12 additions and 12 deletions

View File

@ -122,19 +122,19 @@ int main( int argc, char** argv )
cvaPoint returnPoint;
returnPoint = xte_commandString( display, optarg, mouseButton, searchMethod, tolerance, timeout );
if (returnPoint.x != -1 && returnPoint.y != -1)
{
printf("%s%s%i%s%i\n", optarg, separator, returnPoint.x, separator, returnPoint.y);
returnCode = 0;
}
else if (returnPoint.x == -2 && returnPoint.y == -2)
if (returnPoint.x == -2 && returnPoint.y == -2)
{
/* Not an error, just that the command didn't use returnPoint */
printf("%s\n", optarg);
returnCode = 0;
}
else if (returnPoint.x != -1 && returnPoint.y != -1)
{
printf("%s%s%i%s%i\n", optarg, separator, returnPoint.x, separator, returnPoint.y);
returnCode = 0;
}
break;
case 'o':