projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e40f3eb
)
Suppress compile warnings caused by failure to use PG_RETURN macro.
author
Tom Lane
<tgl@sss.pgh.pa.us>
Tue, 12 Sep 2000 19:39:42 +0000
(19:39 +0000)
committer
Tom Lane
<tgl@sss.pgh.pa.us>
Tue, 12 Sep 2000 19:39:42 +0000
(19:39 +0000)
src/backend/utils/adt/quote.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/utils/adt/quote.c
b/src/backend/utils/adt/quote.c
index 3878a8b960315a79467e1e8de4bac49254e12a6b..947f888a5e99af289f3e1d800d4505add9214e67 100644
(file)
--- a/
src/backend/utils/adt/quote.c
+++ b/
src/backend/utils/adt/quote.c
@@
-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)
;
}