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/button/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'demos/modules/gwin/button') diff --git a/demos/modules/gwin/button/main.c b/demos/modules/gwin/button/main.c index f210d84c..6ec8a287 100644 --- a/demos/modules/gwin/button/main.c +++ b/demos/modules/gwin/button/main.c @@ -49,7 +49,7 @@ static void createWidgets(void) { wi.text = "Push Button"; // Create the actual button - ghButton1 = gwinButtonCreate(NULL, &wi); + ghButton1 = gwinButtonCreate(0, &wi); } int main(void) { -- cgit v1.2.3