diff options
author | Alexander Larsson <alexl@redhat.com> | 2010-07-01 10:50:12 +0200 |
---|---|---|
committer | Alexander Larsson <alexl@redhat.com> | 2010-07-01 10:50:12 +0200 |
commit | d69fd9408cecff72a9261ed5c1cc2de77aee37bb (patch) | |
tree | 0b518f708b5642a74c388a3be101cf79cbec1ded /client/application.cpp | |
parent | 2ec023b89219280aae83429d168a8794abef6e14 (diff) |
client: Use ASSERT, not assert
Diffstat (limited to 'client/application.cpp')
-rw-r--r-- | client/application.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/application.cpp b/client/application.cpp index 482215c..83160c9 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); |