diff options
author | Lionel Landwerlin <[email protected]> | 2017-05-24 02:02:30 +0100 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2017-05-24 10:50:18 +0100 |
commit | 8f1f1d294d47aa16ee4cc9e06a85900c951ac7a6 (patch) | |
tree | e8689a3c8b0ac0807babaf53a547cb0e34c24151 /src/intel/tools | |
parent | 6200d835a0ad1eef50f6dd012de26f112cdbfe4c (diff) |
aubinator: be consistent on exit code
We're using both exit(1) & exit(EXIT_FAILURE), settle for one, same
for success.
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Iago Toral Quiroga <[email protected]>
Diffstat (limited to 'src/intel/tools')
-rw-r--r-- | src/intel/tools/aubinator_error_decode.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/intel/tools/aubinator_error_decode.c b/src/intel/tools/aubinator_error_decode.c index 506d39012b8..a41292238cb 100644 --- a/src/intel/tools/aubinator_error_decode.c +++ b/src/intel/tools/aubinator_error_decode.c @@ -587,7 +587,7 @@ read_data_file(FILE *file) count = ascii85_decode(line+1, &data, line[0] == ':'); if (count == 0) { fprintf(stderr, "ASCII85 decode failed.\n"); - exit(1); + exit(EXIT_FAILURE); } if (strcmp(buffer_name, "user") == 0) { @@ -718,7 +718,7 @@ read_data_file(FILE *file) data = realloc(data, data_size * sizeof (uint32_t)); if (data == NULL) { fprintf(stderr, "Out of memory.\n"); - exit(1); + exit(EXIT_FAILURE); } } @@ -824,7 +824,7 @@ main(int argc, char *argv[]) if (help || argc == 1) { print_help(argv[0], stderr); - exit(0); + exit(EXIT_SUCCESS); } if (optind >= argc) { @@ -847,7 +847,7 @@ main(int argc, char *argv[]) } } else { read_data_file(stdin); - exit(0); + exit(EXIT_SUCCESS); } } else { path = argv[optind]; @@ -855,7 +855,7 @@ main(int argc, char *argv[]) if (error != 0) { fprintf(stderr, "Error opening %s: %s\n", path, strerror(errno)); - exit(1); + exit(EXIT_FAILURE); } } |