diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2013-03-26 15:12:29 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2013-03-26 15:12:54 +1000 |
commit | d771cf75b101a741e29ba0765050936f52f1bca2 (patch) | |
tree | 8df89263189dcc25d286f608c8958bc9b651ab4e | |
parent | 43575f387865007e7ab3ed45088add62b674318d (diff) |
tools: drop -s listing in synclient's help output. SHM is gone.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r-- | tools/synclient.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/synclient.c b/tools/synclient.c index 6239617..b6ea2e6 100644 --- a/tools/synclient.c +++ b/tools/synclient.c @@ -461,7 +461,7 @@ dp_show_settings(Display * dpy, XDevice * dev) static void usage(void) { - fprintf(stderr, "Usage: synclient [-s] [-h] [-l] [-V] [-?] [var1=value1 [var2=value2] ...]\n"); + fprintf(stderr, "Usage: synclient [-h] [-l] [-V] [-?] [var1=value1 [var2=value2] ...]\n"); fprintf(stderr, " -l List current user settings\n"); fprintf(stderr, " -V Print synclient version string and exit\n"); fprintf(stderr, " -? Show this help message\n"); @@ -483,7 +483,7 @@ main(int argc, char *argv[]) dump_settings = 1; /* Parse command line parameters */ - while ((c = getopt(argc, argv, "sm:hlV")) != -1) { + while ((c = getopt(argc, argv, "m:hlV")) != -1) { switch (c) { case 'l': dump_settings = 1; |