projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aa7cf3e
)
Fix indentation that could mask a future bug
author
Magnus Hagander
<magnus@hagander.net>
Thu, 7 May 2015 09:41:26 +0000
(11:41 +0200)
committer
Magnus Hagander
<magnus@hagander.net>
Thu, 7 May 2015 09:41:26 +0000
(11:41 +0200)
Michael Paquier, spotted using Coverity
src/backend/utils/adt/ruleutils.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/utils/adt/ruleutils.c
b/src/backend/utils/adt/ruleutils.c
index fea8db6a5333fe5e31268dd9cfee96bde18296f3..69267bdb918ca4b75251823a4ff2a8bb92c4bfa0 100644
(file)
--- a/
src/backend/utils/adt/ruleutils.c
+++ b/
src/backend/utils/adt/ruleutils.c
@@
-2364,7
+2364,7
@@
print_function_trftypes(StringInfo buf, HeapTuple proctup)
{
if (i != 0)
appendStringInfoString(buf, ", ");
-
appendStringInfo(buf, "FOR TYPE %s", format_type_be(trftypes[i]));
+ appendStringInfo(buf, "FOR TYPE %s", format_type_be(trftypes[i]));
}
}
}