formatting

This commit is contained in:
Viktor Szakats 2025-02-20 21:18:00 +01:00
parent 747516b0d2
commit 79740bf38c
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201
2 changed files with 1 additions and 2 deletions

View File

@ -286,7 +286,7 @@ typedef unsigned int bit;
*/ */
#undef DEBUGASSERT #undef DEBUGASSERT
#if defined(DEBUGBUILD) #ifdef DEBUGBUILD
#define DEBUGASSERT(x) assert(x) #define DEBUGASSERT(x) assert(x)
#else #else
#define DEBUGASSERT(x) do { } while(0) #define DEBUGASSERT(x) do { } while(0)

View File

@ -1189,7 +1189,6 @@ int curl_mprintf(const char *format, ...)
int retcode; int retcode;
va_list ap_save; /* argument pointer */ va_list ap_save; /* argument pointer */
va_start(ap_save, format); va_start(ap_save, format);
retcode = formatf(stdout, fputc_wrapper, format, ap_save); retcode = formatf(stdout, fputc_wrapper, format, ap_save);
va_end(ap_save); va_end(ap_save);
return retcode; return retcode;