]> granicus.if.org Git - postgresql/commitdiff
Fix indentation that could mask a future bug
authorMagnus Hagander <magnus@hagander.net>
Thu, 7 May 2015 09:41:26 +0000 (11:41 +0200)
committerMagnus 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

index fea8db6a5333fe5e31268dd9cfee96bde18296f3..69267bdb918ca4b75251823a4ff2a8bb92c4bfa0 100644 (file)
@@ -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]));
                }
        }
 }