1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 20:03:12 +02:00

Fix building on Windows.

This commit is contained in:
Sadie Powell
2025-08-08 16:15:51 +01:00
parent 003cb55409
commit 6864bc6171
+1 -1
View File
@@ -14,7 +14,7 @@
#define ANOPE_FORMAT(LAST, FORMAT, BUFFER) \
do { \
va_list _valist; \
va_start(_valist, (LAST)); \
va_start(_valist, LAST); \
(BUFFER) = Anope::Format(_valist, (FORMAT)); \
va_end(_valist); \
} while (false);