diff options
Diffstat (limited to 'src/interfaces/python/pgmodule.c')
-rw-r--r-- | src/interfaces/python/pgmodule.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/python/pgmodule.c b/src/interfaces/python/pgmodule.c index fcda897deb8..4dd85e0eea2 100644 --- a/src/interfaces/python/pgmodule.c +++ b/src/interfaces/python/pgmodule.c @@ -1966,9 +1966,9 @@ pgquery_dictresult(pgqueryobject * self, PyObject * args) * one */ s++; - for (k = 0; - *s && k < sizeof(cashbuf)/sizeof(cashbuf[0])-1; - s++) + for (k = 0; + *s && k < sizeof(cashbuf) / sizeof(cashbuf[0]) - 1; + s++) { if (*s != ',') cashbuf[k++] = *s; |