diff options
Diffstat (limited to 'src/if_python3.c')
-rw-r--r-- | src/if_python3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if_python3.c b/src/if_python3.c index 8c22514b7..6e4b81acd 100644 --- a/src/if_python3.c +++ b/src/if_python3.c @@ -1641,7 +1641,7 @@ LineToString(const char *str) { PyObject *result; Py_ssize_t len = strlen(str); - char *tmp,*p; + char *tmp, *p; tmp = alloc(len + 1); p = tmp; |