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 16e0bd6 commit fc1db8a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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.2], [[email protected]])
AC_INIT([linux-touch-gestures], [1.0.3], [[email protected]])
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([src/main.c])

Expand Down
4 changes: 2 additions & 2 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,10 @@ 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);
printf("Looking for multi-touch input device (Attempt %i/%i)\n", retry + 1, config.retries + 1);
char *filename = scan_devices();
if (filename) {
return open(filename, O_RDONLY);
Expand Down

0 comments on commit fc1db8a

Please sign in to comment.