Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
pwmt
zathura
Commits
9cacecaa
Commit
9cacecaa
authored
Mar 23, 2012
by
Sebastian Ramacher
Browse files
A missing comma.
parent
e0dff15f
Changes
1
Hide whitespace changes
Inline
Side-by-side
zathura.c
View file @
9cacecaa
...
...
@@ -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
}
};
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment