kbd-dumb: fix log_warning -> log_warn

We recently moved log_warning to log_warn and I forgot to fix it when
merging the kbd-dumb backend. Fix this now.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
This commit is contained in:
David Herrmann 2012-01-28 12:38:11 +01:00
parent 647d666da3
commit beb4301830
2 changed files with 1 additions and 2 deletions

View File

@ -120,4 +120,3 @@ fi
AC_CONFIG_FILES([Makefile])
AC_OUTPUT([src/genshader.c])
AC_OUTPUT

View File

@ -343,7 +343,7 @@ void kmscon_kbd_reset(struct kmscon_kbd *kbd, int evdev_fd)
errno = 0;
ioctl(evdev_fd, EVIOCGLED(sizeof(leds)), &leds);
if (errno) {
log_warning("kbd-dumb: cannot discover modifiers state: %m\n");
log_warn("kbd-dumb: cannot discover modifiers state: %m\n");
return;
}