Skip to content

Commit

Permalink
Remove obsolete colon
Browse files Browse the repository at this point in the history
  • Loading branch information
coder-hugo committed Apr 20, 2019
1 parent de033cb commit 16e0bd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.69])
AC_INIT([linux-touch-gestures], [1.0.1], [[email protected]])
AC_INIT([linux-touch-gestures], [1.0.2], [[email protected]])
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([src/main.c])

Expand Down
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ static char* scan_devices(void) {

static int open_touch_device(configuration_t config, int retry) {
if (config.touch_device_path) {
printf("Looking for input device: %s (Attempt %i/%i)\n", config.touch_device_path, retry + 1, config.retries + 1);
printf("Looking for input device %s (Attempt %i/%i)\n", config.touch_device_path, retry + 1, config.retries + 1);
return open(config.touch_device_path, O_RDONLY);
} else {
printf("Looking for multi-touch input device: (Attempt %i/%i)\n", retry + 1, config.retries + 1);
Expand Down

0 comments on commit 16e0bd6

Please sign in to comment.