aboutsummaryrefslogtreecommitdiff
path: root/libgui
diff options
context:
space:
mode:
authorMarvin Borner2021-02-25 20:45:10 +0100
committerMarvin Borner2021-02-25 20:45:10 +0100
commita9710cb73cc9ecadaff241428a39a26935cb5c0a (patch)
tree68f509407bc49a4da43ccadfd9115b9e6f7eb413 /libgui
parent26587adae4f5ec61d03fd7075805a24b29107fe3 (diff)
Applied even more warning flags!
Fixing all the warnings wasn't that easy actually..
Diffstat (limited to 'libgui')
-rw-r--r--libgui/png.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libgui/png.c b/libgui/png.c
index 03ff89e..5f55a3e 100644
--- a/libgui/png.c
+++ b/libgui/png.c
@@ -5228,7 +5228,7 @@ static u32 readChunk_iTXt(pngInfo *info, const pngDecoderSettings *decoder, cons
png_free(str);
} else {
error = png_add_itext_sized(info, key, langtag, transkey,
- (char *)(data + begin), length);
+ (const char *)(data + begin), length);
}
break;
@@ -7253,8 +7253,9 @@ const char *png_error_text(u32 code)
unreasonable memory consumption when decoding due to impossibly large ICC profile*/
case 113:
return "ICC profile unreasonably large";
+ default:
+ return "unknown error code";
}
- return "unknown error code";
}
#endif /*PNG_COMPILE_ERROR_TEXT*/