From: Dale Weiler Date: Mon, 31 Dec 2012 18:34:13 +0000 (+0000) Subject: Add todo about util_vasprintf (too lazy to fix right now) X-Git-Tag: before-library~401 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=f4c30808244a2c7dd5a073039986e3c15f5b714c;p=xonotic%2Fgmqcc.git Add todo about util_vasprintf (too lazy to fix right now) --- diff --git a/util.c b/util.c index 8671faa..ebe6165 100644 --- a/util.c +++ b/util.c @@ -576,6 +576,8 @@ void util_htdel(hash_table_t *ht) { /* * Portable implementation of vasprintf/asprintf. Assumes vsnprintf * exists, otherwise compiler error. + * + * TODO: fix for MSVC .... */ int util_vasprintf(char **ret, const char *fmt, va_list args) { int read;