Hi, > > Can't we just removed err here, Im afraid using > > __attribute__((__unused__)) is not a good practice and we should try > > to avoid using it. > > We either get a warning that the return value is unused, or that we > should be checking the return value. Which one do you prefer? Maybe sth like this: diff --git a/input/device.c b/input/device.c index 316b2cc..2da2030 100644 --- a/input/device.c +++ b/input/device.c @@ -250,14 +250,14 @@ static int decode_key(const char *str) static void send_event(int fd, uint16_t type, uint16_t code, int32_t value) { struct uinput_event event; - int err; memset(&event, 0, sizeof(event)); event.type = type; event.code = code; event.value = value; - err = write(fd, &event, sizeof(event)); + if (write(fd, &event, sizeof(event)) < 0) + error("input: send_event failed: %s", strerror(errno)); } -- BR Szymon Janc -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html