Suppress compile warnings caused by failure to use PG_RETURN macro.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 12 Sep 2000 19:39:42 +0000 (19:39 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 12 Sep 2000 19:39:42 +0000 (19:39 +0000)
src/backend/utils/adt/quote.c

index 3878a8b960315a79467e1e8de4bac49254e12a6b..947f888a5e99af289f3e1d800d4505add9214e67 100644 (file)
@@ -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);
 }