diff options
| author | Bruce Momjian <bruce@momjian.us> | 2011-06-09 14:32:50 -0400 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2011-06-09 14:32:50 -0400 |
| commit | 6560407c7db2c7e32926a46f5fb52175ac10d9e5 (patch) | |
| tree | 9641e538893819410634624a8e0cb86a13d857a6 /src/pl/plpython/plpython.c | |
| parent | adf43b2b36ca3d7f988933990051c74a4bd0d6f8 (diff) | |
| download | postgresql-6560407c7db2c7e32926a46f5fb52175ac10d9e5.tar.gz | |
Pgindent run before 9.1 beta2.
Diffstat (limited to 'src/pl/plpython/plpython.c')
| -rw-r--r-- | src/pl/plpython/plpython.c | 9 |
1 files changed, 6 insertions, 3 deletions
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 "<string>" as the filename */ + /* + * function code object was compiled with "<string>" as the + * filename + */ if (PLy_curr_procedure && plain_filename != NULL && strcmp(plain_filename, "<string>") == 0) { |
