From 26c9d2c6d092d1c966021762e3b277ef5e007fa8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Tue, 27 Jun 2000 17:22:38 +0200
Subject: [PATCH] Fixed warnings.

Rev: src/pike_memory.c:1.70
---
 src/pike_memory.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/pike_memory.c b/src/pike_memory.c
index 4c7fe8bf8f..5ca4e492fc 100644
--- a/src/pike_memory.c
+++ b/src/pike_memory.c
@@ -10,7 +10,7 @@
 #include "pike_macros.h"
 #include "gc.h"
 
-RCSID("$Id: pike_memory.c,v 1.69 2000/06/17 00:24:26 hubbe Exp $");
+RCSID("$Id: pike_memory.c,v 1.70 2000/06/27 15:22:38 grubba Exp $");
 
 /* strdup() is used by several modules, so let's provide it */
 #ifndef HAVE_STRDUP
@@ -548,6 +548,8 @@ void *generic_memory_search(struct generic_mem_searcher *s,
     default:
      fatal("Wacko method!\n");
   }
+  /* NOT REACHED */
+  return NULL;	/* Keep the compiler happy. */
 }
 		    
 
@@ -664,6 +666,8 @@ char *debug_qalloc(long size)
 #endif
 
   fatal("Completely out of memory!\n");
+  /* NOT_REACHED */
+  return NULL;	/* Keep the compiler happy. */
 }
 
 #ifdef DEBUG_MALLOC
-- 
GitLab