# HG changeset patch # User Karl Heuer # Date 808251328 0 # Node ID 4e9a14304b8b01adb5b3d6cc3617b6bfde63ce6c # Parent 40a12a81cc0642e3709e311e8dec2c8071729fc3 (xrealloc): Change cast to match return type. diff -r 40a12a81cc06 -r 4e9a14304b8b lib-src/fakemail.c --- a/lib-src/fakemail.c Sat Aug 12 09:23:54 1995 +0000 +++ b/lib-src/fakemail.c Sat Aug 12 18:15:28 1995 +0000 @@ -182,7 +182,7 @@ int size; { long *result = (long *) realloc (ptr, ((unsigned) size)); - if (result == ((char *) NULL)) + if (result == ((long *) NULL)) fatal ("virtual memory exhausted"); return result; }