Skip to content
Snippets Groups Projects
Commit 8367529c authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Remove compile warning.

parent 8d78d164
No related branches found
No related tags found
No related merge requests found
#include <stdlib.h>
#include <ecpgtype.h>
/*
* This function is used to generate the correct type names.
......@@ -7,7 +8,7 @@ ECPGtype_name(enum ECPGttype typ)
{
switch (typ)
{
case ECPGt_char:return "char";
case ECPGt_char:return "char";
case ECPGt_unsigned_char:
return "unsigned char";
case ECPGt_short:
......@@ -31,4 +32,5 @@ ECPGtype_name(enum ECPGttype typ)
default:
abort();
}
return NULL;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment