From e0cfa1bc82ffcf25f8e668c97bb0a0519284cd20 Mon Sep 17 00:00:00 2001 From: Oleksandr Tymoshenko Date: Mon, 12 Sep 2016 17:29:20 +0000 Subject: [PATCH] Remove semicolon from the end of the macro definition Reported by: hans --- sys/dev/evdev/cdev.c | 2 +- sys/dev/evdev/uinput.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/evdev/cdev.c b/sys/dev/evdev/cdev.c index 01372f10316..fb81acefe51 100644 --- a/sys/dev/evdev/cdev.c +++ b/sys/dev/evdev/cdev.c @@ -49,7 +49,7 @@ #include #ifdef EVDEV_DEBUG -#define debugf(client, fmt, args...) printf("evdev cdev: "fmt"\n", ##args); +#define debugf(client, fmt, args...) printf("evdev cdev: "fmt"\n", ##args) #else #define debugf(client, fmt, args...) #endif diff --git a/sys/dev/evdev/uinput.c b/sys/dev/evdev/uinput.c index 64002f09be8..98676bf1ce5 100644 --- a/sys/dev/evdev/uinput.c +++ b/sys/dev/evdev/uinput.c @@ -50,7 +50,7 @@ #include #ifdef UINPUT_DEBUG -#define debugf(state, fmt, args...) printf("uinput: " fmt "\n", ##args); +#define debugf(state, fmt, args...) printf("uinput: " fmt "\n", ##args) #else #define debugf(state, fmt, args...) #endif