Commit 95dcfede authored by Sergei Golubchik's avatar Sergei Golubchik

deb packages didn't build

because they compile with -Werror=format-security
parent b9aab7d9
...@@ -571,7 +571,7 @@ void VALUE::Printf(PGLOBAL g, FILE *f, uint n) ...@@ -571,7 +571,7 @@ void VALUE::Printf(PGLOBAL g, FILE *f, uint n)
if (Null) if (Null)
fprintf(f, "%s<null>\n", m); fprintf(f, "%s<null>\n", m);
else else
fprintf(f, strcat(strcat(GetCharString(buf), "\n"), m)); fprintf(f, "%s%s\n", m, GetCharString(buf));
} /* end of Printf */ } /* end of Printf */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment