From d9f02858fdc04c4404834a033850f758e4c8ee7e Mon Sep 17 00:00:00 2001 From: inmarket Date: Sat, 21 Dec 2013 13:21:59 +1000 Subject: Replace NULL's with 0 as NULL is not defined by the Raw32 GOS. --- demos/modules/gwin/basic/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'demos/modules/gwin/basic') diff --git a/demos/modules/gwin/basic/main.c b/demos/modules/gwin/basic/main.c index eee22f29..4d8fa33c 100644 --- a/demos/modules/gwin/basic/main.c +++ b/demos/modules/gwin/basic/main.c @@ -44,9 +44,9 @@ int main(void) { GWindowInit wi; wi.show = TRUE; wi.x = 20; wi.y = 10; wi.width = 200; wi.height = 150; - GW1 = gwinWindowCreate(NULL, &wi); + GW1 = gwinWindowCreate(0, &wi); wi.show = TRUE; wi.x = 50; wi.y = 190; wi.width = 150; wi.height = 100; - GW2 = gwinWindowCreate(NULL, &wi); + GW2 = gwinWindowCreate(0, &wi); } /* Set fore- and background colors for both windows */ -- cgit v1.2.3