Remove compile warning.

This commit is contained in:
Bruce Momjian 1998-02-26 16:06:20 +00:00
parent 8d78d16485
commit 8367529c41
1 changed files with 3 additions and 1 deletions

View File

@ -1,3 +1,4 @@
#include <stdlib.h>
#include <ecpgtype.h> #include <ecpgtype.h>
/* /*
* This function is used to generate the correct type names. * This function is used to generate the correct type names.
@ -31,4 +32,5 @@ ECPGtype_name(enum ECPGttype typ)
default: default:
abort(); abort();
} }
return NULL;
} }