diff options
author | Marvin Borner | 2021-05-23 14:30:07 +0200 |
---|---|---|
committer | Marvin Borner | 2021-05-23 14:34:52 +0200 |
commit | 33fd97e19a12535c02b1cf6804cb854a279e040c (patch) | |
tree | 0ea00a9b60b35e42830eb3b13887fea2d356d655 /libs/libgui | |
parent | 0bf64a113f3d3baa110b362fd6a215ef29182671 (diff) |
Cleanup, linting, formatting
Diffstat (limited to 'libs/libgui')
-rw-r--r-- | libs/libgui/png.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libs/libgui/png.c b/libs/libgui/png.c index c405c3c..d2053ca 100644 --- a/libs/libgui/png.c +++ b/libs/libgui/png.c @@ -408,7 +408,6 @@ u32 png_load_file(u8 **out, u32 *outsize, const char *filename) /*write given buffer to the file, overwriting the file, it doesn't append to it.*/ u32 png_save_file(const u8 *buffer, u32 buffersize, const char *filename) { - err(1, "Not implemented!\n"); if (write(filename, buffer, 0, buffersize) <= 0) return 79; return 0; |