changeset 1080:d3582c7b620d

(xalloc_fail_func): Initialize to 0, not NULL.
author Jim Meyering <jim@meyering.net>
date Sun, 26 Oct 1997 04:39:53 +0000
parents 691aa7b034a7
children 932c1ae310ed
files lib/xmalloc.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lib/xmalloc.c
+++ b/lib/xmalloc.c
@@ -63,7 +63,7 @@
 char *const xalloc_msg_memory_exhausted = N_("Memory exhausted");
 
 /* FIXME: describe */
-void (*xalloc_fail_func) () = NULL;
+void (*xalloc_fail_func) () = 0;
 
 #if __STDC__ && (HAVE_VPRINTF || HAVE_DOPRNT)
 void error (int, int, const char *, ...);