From 10e21cca0552688d8abf3e69de265370558e40d1 Mon Sep 17 00:00:00 2001 From: monsta Date: Sun, 2 Nov 2014 14:07:00 +0300 Subject: wm-tester: correct NULL pointer check Closes https://github.com/mate-desktop/marco/pull/144 --- src/wm-tester/test-resizing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/wm-tester/test-resizing.c b/src/wm-tester/test-resizing.c index 344b8325..337e304b 100644 --- a/src/wm-tester/test-resizing.c +++ b/src/wm-tester/test-resizing.c @@ -79,7 +79,7 @@ get_size (Display *d, Drawable draw, *yp = y; if (widthp) *widthp = width; - if (*heightp) + if (heightp) *heightp = height; } -- cgit v1.2.1