Make ./awesome -a work

Some time ago I added a --no-argb option with the short-hand version -a.
However, the short version didn't actually work. Whoops!

Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
Uli Schlachter 2011-01-19 20:02:41 +01:00
parent 659d949052
commit 4ee86fc5e4
1 changed files with 1 additions and 1 deletions

View File

@ -365,7 +365,7 @@ main(int argc, char **argv)
luaA_init(&xdg); luaA_init(&xdg);
/* check args */ /* check args */
while((opt = getopt_long(argc, argv, "vhkc:", while((opt = getopt_long(argc, argv, "vhkc:a",
long_options, NULL)) != -1) long_options, NULL)) != -1)
switch(opt) switch(opt)
{ {