Silence compiler warnings

Reported by Peter Eisentraut.  Coding suggested by Tom Lane.
This commit is contained in:
Alvaro Herrera 2016-09-28 19:31:58 -03:00
parent 83bed06be4
commit b82d5a2c7c
1 changed files with 5 additions and 10 deletions

View File

@ -2290,23 +2290,18 @@ get_object_namespace(const ObjectAddress *address)
int int
read_objtype_from_string(const char *objtype) read_objtype_from_string(const char *objtype)
{ {
ObjectType type;
int i; int i;
for (i = 0; i < lengthof(ObjectTypeMap); i++) for (i = 0; i < lengthof(ObjectTypeMap); i++)
{ {
if (strcmp(ObjectTypeMap[i].tm_name, objtype) == 0) if (strcmp(ObjectTypeMap[i].tm_name, objtype) == 0)
{ return ObjectTypeMap[i].tm_type;
type = ObjectTypeMap[i].tm_type;
break;
}
} }
if (i >= lengthof(ObjectTypeMap)) ereport(ERROR,
ereport(ERROR, (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
(errcode(ERRCODE_INVALID_PARAMETER_VALUE), errmsg("unrecognized object type \"%s\"", objtype)));
errmsg("unrecognized object type \"%s\"", objtype)));
return type; return -1; /* keep compiler quiet */
} }
/* /*