Skip to content
Snippets Groups Projects
Commit 5bbc639d authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

winwidget_render_image: Initialize max_w and max_h

Just in case, and we don't want the compiler to complain about it, do we? ;)
parent 69739f19
No related branches found
No related tags found
No related merge requests found
......@@ -382,7 +382,7 @@ void winwidget_render_image(winwidget winwid, int resize, int alias)
if (resize && (winwid->full_screen || opt.geom_flags)) {
int smaller; /* Is the image smaller than screen? */
int max_w, max_h;
int max_w = 0, max_h = 0;
if (winwid->full_screen) {
max_w = scr->width;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment