diff options
author | Nicolas Bacca | 2004-12-20 23:52:51 +0000 |
---|---|---|
committer | Nicolas Bacca | 2004-12-20 23:52:51 +0000 |
commit | 38c1b61759d019cbfa6dcc55cff163a9314c12a1 (patch) | |
tree | 6b013c7ee2d414d59e29a22aa81079ec169658a7 /backends/wince | |
parent | 347815cdaee6f7207bb40692aa8727952496ff58 (diff) | |
download | scummvm-rg350-38c1b61759d019cbfa6dcc55cff163a9314c12a1.tar.gz scummvm-rg350-38c1b61759d019cbfa6dcc55cff163a9314c12a1.tar.bz2 scummvm-rg350-38c1b61759d019cbfa6dcc55cff163a9314c12a1.zip |
Fix assert
svn-id: r16216
Diffstat (limited to 'backends/wince')
-rw-r--r-- | backends/wince/missing/assert.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/wince/missing/assert.h b/backends/wince/missing/assert.h index d7a4a5fb40..192c1e966b 100644 --- a/backends/wince/missing/assert.h +++ b/backends/wince/missing/assert.h @@ -2,7 +2,7 @@ #include "common/util.h" -#define assert(e) ((e) ? 0 : (error("Assertion failed " #e " (%s, %d)", __FILE__, __LINE__))) +#define assert(e) ((e) ? 0 : (::error("Assertion failed " #e " (%s, %d)", __FILE__, __LINE__))) -#define abort() error("Abort (%s, %d)", __FILE__, __LINE__) +#define abort() ::error("Abort (%s, %d)", __FILE__, __LINE__) |