Merge pull request #734 from mehlis/native-c++-fixes

C++ compiler warnings (native, core)
This commit is contained in:
Christian Mehlis 2014-02-20 10:27:37 +01:00
commit 48f23aa43d
14 changed files with 31 additions and 30 deletions

View File

@ -38,8 +38,9 @@ static int _native_ltc_hwtimer_id = -1;
/**
* native ltc4150 hwtimer - interrupt handler proxy
*/
static void _native_ltc_int_handler()
static void _native_ltc_int_handler(void *param)
{
(void) param;
DEBUG("_native_ltc_int_handler()\n");
if (_native_ltc_hwtimer_id != -1) {
ltc4150_interrupt();