client: Use ASSERT, not assert

This commit is contained in:
Alexander Larsson 2010-07-01 10:50:12 +02:00
parent 2ec023b892
commit d69fd9408c

View File

@ -2141,7 +2141,7 @@ void spice_log(unsigned int type, const char *function, const char *format, ...)
return;
}
assert(type <= LOG_FATAL);
ASSERT(type <= LOG_FATAL);
va_start(ap, format);
string_vprintf(formated_message, format, ap);