quote: use nasm_assert() instead of plain assert()
authorH. Peter Anvin <hpa@zytor.com>
Wed, 15 Jul 2009 20:28:43 +0000 (16:28 -0400)
committerH. Peter Anvin <hpa@zytor.com>
Wed, 15 Jul 2009 20:28:43 +0000 (16:28 -0400)
We have nasm_assert() now, so use it...

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
quote.c

diff --git a/quote.c b/quote.c
index 4cf4f25..2cb55b1 100644 (file)
--- a/quote.c
+++ b/quote.c
@@ -37,7 +37,6 @@
 
 #include "compiler.h"
 
-#include <assert.h>
 #include <stdlib.h>
 
 #include "nasmlib.h"
@@ -177,7 +176,7 @@ char *nasm_quote(char *str, size_t len)
        }
        *q++ = '`';
        *q++ = '\0';
-       assert((size_t)(q-nstr) == qlen+3);
+       nasm_assert((size_t)(q-nstr) == qlen+3);
     }
     return nstr;
 }