From 40534cbc79935a8e0ebd936f65fd0fcbf84e15e8 Mon Sep 17 00:00:00 2001 From: Andrew Hannam Date: Fri, 8 Mar 2013 00:49:52 +1000 Subject: Correction of copyright message --- src/gadc/gadc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/gadc/gadc.c b/src/gadc/gadc.c index 183b9923..40b901ae 100644 --- a/src/gadc/gadc.c +++ b/src/gadc/gadc.c @@ -1,5 +1,5 @@ /* - ChibiOS/GFX - Copyright (C) 2012, 2013, 2013 + ChibiOS/GFX - Copyright (C) 2012, 2013 Joel Bodenmann aka Tectu This file is part of ChibiOS/GFX. -- cgit v1.2.3 From a2cb02abbf2e3cb8659050fec3576f59b4d2f5e3 Mon Sep 17 00:00:00 2001 From: Andrew Hannam Date: Fri, 8 Mar 2013 00:52:33 +1000 Subject: Fix compiler warning --- src/gwin/gwin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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: -- cgit v1.2.3