aboutsummaryrefslogtreecommitdiff
path: root/winsup/mingw
diff options
context:
space:
mode:
authorEarnie Boyd <earnie@users.sf.net>2001-01-30 18:03:23 +0000
committerEarnie Boyd <earnie@users.sf.net>2001-01-30 18:03:23 +0000
commit535964b7a4285c524326c454472f96c837e607d8 (patch)
tree41066b3f50f0ae596e78b1a82a78ded9dedb97c2 /winsup/mingw
parent9cf3d9cbb596e01c98db03302c2ba80e0f2f3bad (diff)
downloadnewlib-535964b7a4285c524326c454472f96c837e607d8.zip
newlib-535964b7a4285c524326c454472f96c837e607d8.tar.gz
newlib-535964b7a4285c524326c454472f96c837e607d8.tar.bz2
* include/assert.h: (assert): Remove ; from end of definition
Thanks to: AJ Reins <tbisp@qwest.net>
Diffstat (limited to 'winsup/mingw')
-rw-r--r--winsup/mingw/ChangeLog5
-rw-r--r--winsup/mingw/include/assert.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/mingw/ChangeLog b/winsup/mingw/ChangeLog
index c591239..fc28990 100644
--- a/winsup/mingw/ChangeLog
+++ b/winsup/mingw/ChangeLog
@@ -1,4 +1,9 @@
+Tue Jan 30 13:01:01 2001 Earnie Boyd <earnie@users.sourceforge.net>
+
+ * include/assert.h: (assert): Remove ; from end of definition
+ Thanks to: AJ Reins <tbisp@qwest.net>
+
Tue Jan 30 07:31:22 2001 Earnie Boyd <earnie@users.sourceforge.net>
* include/time.h: (CLOCKS_PER_SEC): Type cast the constant.
diff --git a/winsup/mingw/include/assert.h b/winsup/mingw/include/assert.h
index 18deea1..3c3ceaa 100644
--- a/winsup/mingw/include/assert.h
+++ b/winsup/mingw/include/assert.h
@@ -41,7 +41,7 @@ extern "C" {
/*
* If not debugging, assert does nothing.
*/
-#define assert(x) ((void)0);
+#define assert(x) ((void)0)
#else /* debugging enabled */