Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
pwmt
zathura
Commits
7c5ec273
Commit
7c5ec273
authored
Jan 24, 2017
by
Sebastian Ramacher
Browse files
Fix type
Signed-off-by:
Sebastian Ramacher
<
sebastian+dev@ramacher.at
>
parent
2498d5cf
Changes
1
Hide whitespace changes
Inline
Side-by-side
zathura/completion.c
View file @
7c5ec273
...
...
@@ -56,8 +56,8 @@ list_files(zathura_t* zathura, const char* current_path, const char* current_fil
girara_setting_get
(
zathura
->
ui
.
session
,
"show-directories"
,
&
show_directories
);
/* read files */
char
*
name
=
NULL
;
while
((
name
=
(
char
*
)
g_dir_read_name
(
dir
))
!=
NULL
)
{
const
char
*
name
=
NULL
;
while
((
name
=
g_dir_read_name
(
dir
))
!=
NULL
)
{
char
*
e_name
=
g_filename_display_name
(
name
);
if
(
e_name
==
NULL
)
{
goto
error_free
;
...
...
Write
Preview
Markdown
is supported
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