aboutsummaryrefslogtreecommitdiffstats
path: root/demos/modules/gwin/list
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2013-12-21 13:21:59 +1000
committerinmarket <andrewh@inmarket.com.au>2013-12-21 13:21:59 +1000
commitd9f02858fdc04c4404834a033850f758e4c8ee7e (patch)
tree2d7b4759cabf76eba5b7ef2147e58d3c9d7f885b /demos/modules/gwin/list
parent018a930d5525ffefc30fb2514752918455853685 (diff)
downloaduGFX-d9f02858fdc04c4404834a033850f758e4c8ee7e.tar.gz
uGFX-d9f02858fdc04c4404834a033850f758e4c8ee7e.tar.bz2
uGFX-d9f02858fdc04c4404834a033850f758e4c8ee7e.zip
Replace NULL's with 0 as NULL is not defined by the Raw32 GOS.
Diffstat (limited to 'demos/modules/gwin/list')
-rw-r--r--demos/modules/gwin/list/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/modules/gwin/list/main.c b/demos/modules/gwin/list/main.c
index e99c2448..03d99d58 100644
--- a/demos/modules/gwin/list/main.c
+++ b/demos/modules/gwin/list/main.c
@@ -49,7 +49,7 @@ static void createWidgets(void) {
wi.text = "List Name";
// Create the actual list
- ghList1 = gwinListCreate(NULL, &wi, FALSE);
+ ghList1 = gwinListCreate(0, &wi, FALSE);
}
int main(void) {