remove spurious ; from isl_assert definition
authorSven Verdoolaege <skimo@kotnet.org>
Sun, 10 Aug 2008 12:18:07 +0000 (14:18 +0200)
committerSven Verdoolaege <skimo@kotnet.org>
Mon, 25 Aug 2008 07:24:19 +0000 (09:24 +0200)
include/isl_ctx.h.in

index c412bd2..585d2ff 100644 (file)
@@ -65,7 +65,7 @@ struct isl_ctx {
 #define isl_realloc_array(ctx,ptr,type,n) \
                                    isl_realloc(ctx,ptr,type,(n)*sizeof(type))
 
-#define isl_assert(ctx,test,code)      assert(test);
+#define isl_assert(ctx,test,code)      assert(test)
 
 #define isl_min(a,b)                   ((a < b) ? (a) : (b))