Skip to content
Snippets Groups Projects
Commit e1f802b1 authored by Niels Möller's avatar Niels Möller
Browse files

(sexp_format): Don't mix code and declarations.

Rev: src/nettle/sexp_format.c:1.3
parent 3cc24c84
No related branches found
No related tags found
No related merge requests found
...@@ -82,10 +82,10 @@ int ...@@ -82,10 +82,10 @@ int
sexp_format(struct nettle_buffer *buffer, const char *format, ...) sexp_format(struct nettle_buffer *buffer, const char *format, ...)
{ {
va_list args; va_list args;
va_start(args, format);
unsigned nesting = 0; unsigned nesting = 0;
va_start(args, format);
for (;;) for (;;)
switch (*format++) switch (*format++)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment