a few cosmetic changes

Signed-off-by: Ran Benita <ran234@gmail.com>
This commit is contained in:
Ran Benita 2012-01-09 01:08:58 +02:00
parent 5dbeb1474b
commit ca8b4c67d0
4 changed files with 5 additions and 5 deletions

View File

@ -67,7 +67,7 @@ AC_ARG_ENABLE([pango],
AC_MSG_RESULT([$force_pango])
if test x$force_pango = xyes -a $have_pango = xno ; then
AC_ERROR([Pango library not found])
AC_ERROR([Pango library not found])
fi
AM_CONDITIONAL([USE_PANGO], [test x$force_pango = xyes])
@ -80,7 +80,7 @@ AM_CONDITIONAL([DEBUG], [test x$debug = xyes])
AC_MSG_RESULT([$debug])
if test ! x$debug = xyes ; then
AC_DEFINE([NDEBUG], [1], [No Debug])
AC_DEFINE([NDEBUG], [1], [No Debug])
fi
AC_CONFIG_FILES([Makefile])

View File

@ -209,7 +209,7 @@ void kmscon_console_unref(struct kmscon_console *con)
kmscon_buffer_unref(con->cells);
kmscon_font_factory_unref(con->ff);
free(con);
log_debug("console: destroing console\n");
log_debug("console: destroying console\n");
}
unsigned int kmscon_console_get_width(struct kmscon_console *con)

View File

@ -545,7 +545,7 @@ int kmscon_eloop_dispatch(struct kmscon_eloop *loop, int timeout)
/* dispatch fd events */
count = epoll_wait(loop->efd, ep, 32, timeout);
if (count < 0) {
log_warning("eloop: epoll_wait dispatching failed\n");
log_warning("eloop: epoll_wait dispatching failed: %m\n");
return -errno;
}

View File

@ -667,7 +667,7 @@ bool kmscon_xkb_process_evdev_key(struct xkb_desc *desc,
struct kmscon_input_event *out)
{
KeyCode keycode;
uint8_t group;
uint8_t group;
uint16_t shift_level;
uint32_t sym;
union xkb_action *action;