about summary refs log tree commit diff
path: root/assert/assert.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-06-24 13:08:20 +0000
committerUlrich Drepper <drepper@redhat.com>1999-06-24 13:08:20 +0000
commitd0db5f488d9a47947c49f728ca29077c0cff48b1 (patch)
treec6e132fdf05a3cee02a24e742629b0120ed28920 /assert/assert.h
parentd6a1bbed9be8572844eeab92eb1a7845b557f401 (diff)
downloadglibc-d0db5f488d9a47947c49f728ca29077c0cff48b1.tar.gz
glibc-d0db5f488d9a47947c49f728ca29077c0cff48b1.tar.xz
glibc-d0db5f488d9a47947c49f728ca29077c0cff48b1.zip
Update.
1999-06-24  Thorsten Kukuk  <kukuk@suse.de>

	* nscd/grpcache.c: Add "notfound" data to cache, not iov pointer.
	* nscd/pwdcache.c: Likewise.
	* nscd/hstcache.c: Likewise.
Diffstat (limited to 'assert/assert.h')
-rw-r--r--assert/assert.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/assert/assert.h b/assert/assert.h
index 386e80c3b1..326183a272 100644
--- a/assert/assert.h
+++ b/assert/assert.h
@@ -90,7 +90,7 @@ __END_DECLS
    This is broken in G++ before version 2.6.
    C9x has a similar variable called __func__, but prefer the GCC one since
    it demangles C++ function names.  */
-# if __GNUC_PREREQ (2, (defined __cplusplus ? 6 : 4))
+# if defined __cplusplus ? __GNUC_PREREQ (2, 6) : __GNUC_PREREQ (2, 4)
 #   define __ASSERT_FUNCTION	__PRETTY_FUNCTION__
 # else
 #  if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L