diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2025-09-15 09:27:16 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2025-09-15 09:27:16 +0200 |
commit | a00358f07e4474d0cbc8817d7b2f2d2c5cbdac0c (patch) | |
tree | 506c2deebcad7684c125e894a7eee29598ed2ecd /backend/escl/escl_jpeg.c | |
parent | 7a3814ff46a11da098906af8621571b1a323226e (diff) | |
parent | 0b8a357c867854848e6987edcf4433a9a6534ba7 (diff) |
Merge branch 'release/debian/1.4.0-1'HEADdebian/1.4.0-1master
Diffstat (limited to 'backend/escl/escl_jpeg.c')
-rw-r--r-- | backend/escl/escl_jpeg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/escl/escl_jpeg.c b/backend/escl/escl_jpeg.c index 62c20c0..9008dae 100644 --- a/backend/escl/escl_jpeg.c +++ b/backend/escl/escl_jpeg.c @@ -179,7 +179,7 @@ get_JPEG_data(capabilities_t *scanner, int *width, int *height, int *bps) if (surface != NULL) free(surface); fseek(scanner->tmp, start, SEEK_SET); - DBG( 1, "Escl Jpeg : Error reading jpeg\n"); + DBG( 10, "Escl Jpeg : Error reading jpeg\n"); if (scanner->tmp) { fclose(scanner->tmp); scanner->tmp = NULL; @@ -241,7 +241,7 @@ get_JPEG_data(capabilities_t *scanner, int *width, int *height, int *bps) surface = malloc(cinfo.output_width * cinfo.output_height * cinfo.output_components); if (surface == NULL) { jpeg_destroy_decompress(&cinfo); - DBG( 1, "Escl Jpeg : Memory allocation problem\n"); + DBG( 10, "Escl Jpeg : Memory allocation problem\n"); if (scanner->tmp) { fclose(scanner->tmp); scanner->tmp = NULL; |