Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
ab201c27
...
ab201c27945fe2fa2699cc6804a2a5200c48ac93
authored
2001-06-16 14:00:13 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
swapped arguments in a call to va_start()
1 parent
d1a6e142
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
sieve/sieve.c
sieve/sieve.c
View file @
ab201c2
...
...
@@ -205,7 +205,7 @@ sv_printv (sv_interp_ctx_t* ic, int level, const char *fmt, va_list ap)
void
sv_print
(
sv_interp_ctx_t
*
ic
,
int
level
,
const
char
*
fmt
,
...)
{
va_list
ap
;
va_start
(
fmt
,
ap
);
va_start
(
ap
,
fmt
);
sv_printv
(
ic
,
level
,
fmt
,
ap
);
va_end
(
ap
);
}
...
...
Please
register
or
sign in
to post a comment