Skip to content

Commit fc1db8a

Browse files
committed
Remove obsolete colon
1 parent 16e0bd6 commit fc1db8a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.69])
5-
AC_INIT([linux-touch-gestures], [1.0.2], [[email protected]])
5+
AC_INIT([linux-touch-gestures], [1.0.3], [[email protected]])
66
AM_INIT_AUTOMAKE
77
AC_CONFIG_SRCDIR([src/main.c])
88

src/main.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -132,10 +132,10 @@ static char* scan_devices(void) {
132132

133133
static int open_touch_device(configuration_t config, int retry) {
134134
if (config.touch_device_path) {
135-
printf("Looking for input device %s (Attempt %i/%i)\n", config.touch_device_path, retry + 1, config.retries + 1);
135+
printf("Looking for input device: %s (Attempt %i/%i)\n", config.touch_device_path, retry + 1, config.retries + 1);
136136
return open(config.touch_device_path, O_RDONLY);
137137
} else {
138-
printf("Looking for multi-touch input device: (Attempt %i/%i)\n", retry + 1, config.retries + 1);
138+
printf("Looking for multi-touch input device (Attempt %i/%i)\n", retry + 1, config.retries + 1);
139139
char *filename = scan_devices();
140140
if (filename) {
141141
return open(filename, O_RDONLY);

0 commit comments

Comments
 (0)