about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--include/ldsodefs.h2
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 62156b789b..e15f9544e0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 1998-10-19  Ulrich Drepper  <drepper@cygnus.com>
 
+	* include/ldsodefs.h: Fix typo.
+
 	* posix/Makefile (tests): Add tst-preadwrite.
 	* posix/tst-preadwrite.c: New file.
 
diff --git a/include/ldsodefs.h b/include/ldsodefs.h
index ffc7b3c067..3c24e4e471 100644
--- a/include/ldsodefs.h
+++ b/include/ldsodefs.h
@@ -9,7 +9,7 @@
 
 /* Call a function through a pointer.  */
 # define _CALL_DL_FCT(fctp, args) (*fctp) args
-# define CALL_DL_FCT(fctp, args) (*fctp) args
+# define DL_CALL_FCT(fctp, args) (*fctp) args
 
 # endif	/* ldsodefs.h */
 #endif