diff options
author | Andrew Hannam <andrewh@inmarket.com.au> | 2013-03-08 00:52:33 +1000 |
---|---|---|
committer | Andrew Hannam <andrewh@inmarket.com.au> | 2013-03-08 00:52:33 +1000 |
commit | a2cb02abbf2e3cb8659050fec3576f59b4d2f5e3 (patch) | |
tree | 84d57fe552ca0b2a73dce624d23aa3ff2b6e5a38 /src | |
parent | 4e67b54e4d3f149bd20409b55c71d1da735999a8 (diff) | |
download | uGFX-a2cb02abbf2e3cb8659050fec3576f59b4d2f5e3.tar.gz uGFX-a2cb02abbf2e3cb8659050fec3576f59b4d2f5e3.tar.bz2 uGFX-a2cb02abbf2e3cb8659050fec3576f59b4d2f5e3.zip |
Fix compiler warning
Diffstat (limited to 'src')
-rw-r--r-- | src/gwin/gwin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gwin/gwin.c b/src/gwin/gwin.c index 33637d89..d7fb5726 100644 --- a/src/gwin/gwin.c +++ b/src/gwin/gwin.c @@ -109,7 +109,7 @@ void gwinDestroyWindow(GHandle gh) { chHeapFree((void *)((GButtonObject *)gh)->txt); } geventDetachSource(&((GButtonObject *)gh)->listener, 0); - geventDetachSourceListeners((GSourceHandle *)gh); + geventDetachSourceListeners((GSourceHandle)gh); break; #endif default: |