X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/7885cfa165458a05ef818c34ee03affc79f03725..f67e46a634dd3bdcefa9fc09dbef6baae1b1d1ed:/missing/snprintf.c diff --git a/missing/snprintf.c b/missing/snprintf.c index 2f12cf16..52eb9a61 100644 --- a/missing/snprintf.c +++ b/missing/snprintf.c @@ -31,9 +31,7 @@ * SUCH DAMAGE. */ -#ifdef HAVE_CONFIG_H #include -#endif #include #include @@ -411,7 +409,7 @@ xyzprintf (struct state *state, const char *char_format, va_list ap) break; } case 'n' : { - int *arg = va_arg(ap, int*); + int *arg = va_arg(ap, int *); *arg = state->s - state->str; break; }