From 9cacecaa5b7574b80d6e00b9b0840833d6d50e32 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Fri, 23 Mar 2012 21:21:07 +0100 Subject: [PATCH] A missing comma. --- zathura.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zathura.c b/zathura.c index 45f5436..df5299a 100644 --- a/zathura.c +++ b/zathura.c @@ -57,7 +57,7 @@ zathura_init(int argc, char* argv[]) { "data-dir", 'd', 0, G_OPTION_ARG_FILENAME, &data_dir, _("Path to the data directory"), "path" }, { "plugins-dir", 'p', 0, G_OPTION_ARG_STRING, &plugin_path, _("Path to the directories containing plugins"), "path" }, { "fork", '\0', 0, G_OPTION_ARG_NONE, &forkback, _("Fork into the background"), NULL }, - { "debug", 'l', 0, G_OPTION_ARG_STRING, &loglevel, _("Log level (debug, info, warning, error)") "level" }, + { "debug", 'l', 0, G_OPTION_ARG_STRING, &loglevel, _("Log level (debug, info, warning, error)"), "level" }, { NULL, '\0', 0, 0, NULL, NULL, NULL } };