Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 116 of file slang_log.c.
Referenced by parse_number(), and preprocess_source().
{ va_list va; char buf[1024]; va_start(va, msg); _mesa_vsprintf(buf, msg, va); va_end(va); if (slang_info_log_message(log, "Warning", buf)) return 1; slang_info_log_memory(log); return 0; }