From d69fd9408cecff72a9261ed5c1cc2de77aee37bb Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Thu, 1 Jul 2010 10:50:12 +0200 Subject: [PATCH] client: Use ASSERT, not assert --- client/application.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/application.cpp b/client/application.cpp index 482215c0..83160c97 100644 --- a/client/application.cpp +++ b/client/application.cpp @@ -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);