From 6560407c7db2c7e32926a46f5fb52175ac10d9e5 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Thu, 9 Jun 2011 14:32:50 -0400 Subject: Pgindent run before 9.1 beta2. --- src/pl/plpython/plpython.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/pl/plpython/plpython.c') diff --git a/src/pl/plpython/plpython.c b/src/pl/plpython/plpython.c index e81f62542f..9081cffb49 100644 --- a/src/pl/plpython/plpython.c +++ b/src/pl/plpython/plpython.c @@ -4512,8 +4512,8 @@ get_source_line(const char *src, int lineno) /* * Sanity check, next < s if the line was all-whitespace, which should - * never happen if Python reported a frame created on that line, but - * check anyway. + * never happen if Python reported a frame created on that line, but check + * anyway. */ if (next < s) return NULL; @@ -4680,7 +4680,10 @@ PLy_traceback(char **xmsg, char **tbmsg, int *tb_depth) &tbstr, "\n PL/Python function \"%s\", line %ld, in %s", proname, plain_lineno - 1, fname); - /* function code object was compiled with "" as the filename */ + /* + * function code object was compiled with "" as the + * filename + */ if (PLy_curr_procedure && plain_filename != NULL && strcmp(plain_filename, "") == 0) { -- cgit v1.2.1