mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
Remove compile warning.
This commit is contained in:
@ -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.
|
||||||
@ -7,7 +8,7 @@ ECPGtype_name(enum ECPGttype typ)
|
|||||||
{
|
{
|
||||||
switch (typ)
|
switch (typ)
|
||||||
{
|
{
|
||||||
case ECPGt_char:return "char";
|
case ECPGt_char:return "char";
|
||||||
case ECPGt_unsigned_char:
|
case ECPGt_unsigned_char:
|
||||||
return "unsigned char";
|
return "unsigned char";
|
||||||
case ECPGt_short:
|
case ECPGt_short:
|
||||||
@ -31,4 +32,5 @@ ECPGtype_name(enum ECPGttype typ)
|
|||||||
default:
|
default:
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
|
return NULL;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user