- use standard-imposed constants some more

This commit is contained in:
Bernhard Reutner-Fischer
2007-11-16 12:39:16 +00:00
parent a702457eac
commit 7c2db5c198
4 changed files with 5 additions and 5 deletions

View File

@ -374,9 +374,9 @@ int sort_main(int argc, char **argv)
for (i = 1; i < linecount; i++)
if (compare_keys(&lines[i-1], &lines[i]) > j) {
fprintf(stderr, "Check line %d\n", i);
return 1;
return EXIT_FAILURE;
}
return 0;
return EXIT_SUCCESS;
}
#endif
/* Perform the actual sort */