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
d699424c
Commit
d699424c
authored
Jul 26, 2013
by
Moritz Lipp
Browse files
Add missing field initializer
parent
71a332ed
Changes
2
Hide whitespace changes
Inline
Side-by-side
links.c
View file @
d699424c
...
...
@@ -108,7 +108,7 @@ zathura_link_target_t
zathura_link_get_target
(
zathura_link_t
*
link
)
{
if
(
link
==
NULL
)
{
zathura_link_target_t
target
=
{
0
};
zathura_link_target_t
target
=
{
0
,
NULL
,
0
,
0
,
0
,
0
,
0
,
0
};
return
target
;
}
...
...
plugin.c
View file @
d699424c
...
...
@@ -400,6 +400,6 @@ zathura_plugin_get_version(zathura_plugin_t* plugin)
return
plugin
->
version
;
}
zathura_plugin_version_t
version
=
{
0
};
zathura_plugin_version_t
version
=
{
0
,
0
,
0
};
return
version
;
}
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