mirror of
https://github.com/postgres/postgres.git
synced 2026-03-01 04:40:42 -05:00
Suppress compile warnings caused by failure to use PG_RETURN macro.
This commit is contained in:
parent
339ce34b87
commit
d49a73bbc2
1 changed files with 3 additions and 3 deletions
|
|
@ -7,7 +7,7 @@
|
|||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/adt/quote.c,v 1.1 2000/09/05 20:25:13 wieck Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/adt/quote.c,v 1.2 2000/09/12 19:39:42 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
|
|
@ -46,7 +46,7 @@ quote_ident(PG_FUNCTION_ARGS)
|
|||
|
||||
PG_FREE_IF_COPY(t, 0);
|
||||
|
||||
return result;
|
||||
PG_RETURN_TEXT_P(result);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
@ -63,7 +63,7 @@ quote_literal(PG_FUNCTION_ARGS)
|
|||
|
||||
PG_FREE_IF_COPY(t, 0);
|
||||
|
||||
return result;
|
||||
PG_RETURN_TEXT_P(result);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue