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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;