commit 5d97f24

Michael Forney  ·  2014-12-24 20:31:21 +0000 UTC
parent c261063
launch: Remove -h flag
1 files changed,  +1, -2
+1, -2
 1@@ -430,14 +430,13 @@ int main(int argc, char * argv[])
 2     struct sigaction action = { 0 };
 3     sigset_t set;
 4 
 5-    while ((option = getopt(argc, argv, "hs:")) != -1)
 6+    while ((option = getopt(argc, argv, "s:")) != -1)
 7     {
 8         switch (option)
 9         {
10             case 's':
11                 setenv("WAYLAND_DISPLAY", optarg, true);
12                 break;
13-            case 'h':
14             default:
15                 usage(argv[0]);
16         }