Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
010b9a85
Commit
010b9a85
authored
May 25, 2008
by
Rémi Denis-Courmont
Browse files
Fix va_start invocation
parent
4bacba8c
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/vlc_fixups.h
View file @
010b9a85
...
...
@@ -58,7 +58,7 @@ static inline int asprintf (char **strp, const char *fmt, ...)
{
va_list
ap
;
int
ret
;
va_start
(
fmt
,
ap
);
va_start
(
ap
,
fmt
);
ret
=
vasprintf
(
strp
,
fmt
,
ap
);
va_end
(
ap
);
return
ret
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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