diff options
| author | Přemysl Janouch <p.janouch@gmail.com> | 2017-02-09 20:25:53 +0100 | 
|---|---|---|
| committer | Přemysl Janouch <p.janouch@gmail.com> | 2017-02-09 20:25:53 +0100 | 
| commit | 9e437bd921c279f14eaaf58ba87b25c132aa0184 (patch) | |
| tree | 62b16a4279a862a23cdf3baf3385c233a6ad6a3d | |
| parent | f22283ae89aa19457558d6028db86fabdb63a4ae (diff) | |
| download | desktop-tools-9e437bd921c279f14eaaf58ba87b25c132aa0184.tar.gz desktop-tools-9e437bd921c279f14eaaf58ba87b25c132aa0184.tar.xz desktop-tools-9e437bd921c279f14eaaf58ba87b25c132aa0184.zip | |
input-switch: fix typo in error message
| -rw-r--r-- | input-switch.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/input-switch.c b/input-switch.c index 96f984a..6a0cf89 100644 --- a/input-switch.c +++ b/input-switch.c @@ -145,7 +145,7 @@ main (int argc, char *argv[])  		 && g_inputs[i].index == (int) index)  			input_source = g_inputs[i].code;  	if (!input_source) -		exit_fatal ("unknown input_source: %s %lu", argv[1], index); +		exit_fatal ("unknown input source: %s %lu", argv[1], index);  	i2c (input_source);  	return 0; | 
