summaryrefslogtreecommitdiff
path: root/jpg2ff.c
diff options
context:
space:
mode:
authorFRIGN <dev@frign.de>2015-11-23 00:25:28 +0100
committerFRIGN <dev@frign.de>2015-11-23 00:25:28 +0100
commitb52a5f56e76a527ebef4dba72187f7e8603f5c78 (patch)
tree0f146c1b5ba21ab89054cda6e37d7f7a87f9fdd5 /jpg2ff.c
parent2c4b975c421456bf14c2891a753da09b4a50cb0a (diff)
JPG Code cleanup
Diffstat (limited to 'jpg2ff.c')
-rw-r--r--jpg2ff.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/jpg2ff.c b/jpg2ff.c
index c6d8a02..f7ac5fc 100644
--- a/jpg2ff.c
+++ b/jpg2ff.c
@@ -17,7 +17,7 @@ static void
usage(void)
{
fprintf(stderr, "usage: %s\n", argv0);
- exit(EXIT_FAILURE);
+ exit(1);
}
METHODDEF(void)
@@ -37,9 +37,9 @@ main(int argc, char *argv[])
struct jpeg_decompress_struct cinfo;
struct jpeg_error_mgr jerr;
uint32_t width, height, val_be;
- uint16_t *ff_row = NULL;
+ uint16_t *ff_row;
size_t jpeg_row_len, ff_row_len, i, dx, sx;
- int status = EXIT_FAILURE;
+ int ret = 1;
JSAMPARRAY buffer; /* output row buffer */
argv0 = argv[0];
@@ -77,7 +77,7 @@ main(int argc, char *argv[])
ff_row_len = strlen("RRGGBBAA") * width;
if(!(ff_row = malloc(ff_row_len))) {
fprintf(stderr, "Can't malloc\n");
- return EXIT_FAILURE;
+ return 1;
}
/* write header with big endian width and height-values */
@@ -107,11 +107,11 @@ main(int argc, char *argv[])
}
}
jpeg_finish_decompress(&cinfo);
- status = EXIT_SUCCESS;
+ ret = 0;
cleanup:
free(ff_row);
jpeg_destroy_decompress(&cinfo);
- return status;
+ return ret;
}