Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 130a7985 authored by Doug Zongker's avatar Doug Zongker Committed by Gerrit Code Review
Browse files

Merge "fix error log statement"

parents d90da130 a388a769
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -110,7 +110,7 @@ static int open_png(const char* name, png_structp* png_ptr, png_infop* info_ptr,
        *channels = 3;
    } else {
        fprintf(stderr, "minui doesn't support PNG depth %d channels %d color_type %d\n",
                bit_depth, (int) channels, color_type);
                bit_depth, *channels, color_type);
        result = -7;
        goto exit;
    }