summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2010-07-01 10:50:12 +0200
committerAlexander Larsson <alexl@redhat.com>2010-07-01 10:50:12 +0200
commitd69fd9408cecff72a9261ed5c1cc2de77aee37bb (patch)
tree0b518f708b5642a74c388a3be101cf79cbec1ded
parent2ec023b89219280aae83429d168a8794abef6e14 (diff)
downloadspice-d69fd9408cecff72a9261ed5c1cc2de77aee37bb.tar.gz
spice-d69fd9408cecff72a9261ed5c1cc2de77aee37bb.tar.xz
spice-d69fd9408cecff72a9261ed5c1cc2de77aee37bb.zip
client: Use ASSERT, not assert
-rw-r--r--client/application.cpp2
1 files changed, 1 insertions, 1 deletions
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);