mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Remove a couple of warnings turned up by "gcc -Wall".
This commit is contained in:
parent
ce4dc41b1a
commit
04e654a63c
2 changed files with 4 additions and 3 deletions
|
@ -793,7 +793,7 @@ SyntaxError__str__(PyObject *self, PyObject *args)
|
|||
buffer = PyMem_Malloc(bufsize);
|
||||
if (buffer != NULL) {
|
||||
if (have_filename && have_lineno)
|
||||
sprintf(buffer, "%s (%s, line %d)",
|
||||
sprintf(buffer, "%s (%s, line %ld)",
|
||||
PyString_AS_STRING(str),
|
||||
my_basename(PyString_AS_STRING(filename)),
|
||||
PyInt_AsLong(lineno));
|
||||
|
@ -802,7 +802,7 @@ SyntaxError__str__(PyObject *self, PyObject *args)
|
|||
PyString_AS_STRING(str),
|
||||
my_basename(PyString_AS_STRING(filename)));
|
||||
else if (have_lineno)
|
||||
sprintf(buffer, "%s (line %d)",
|
||||
sprintf(buffer, "%s (line %ld)",
|
||||
PyString_AS_STRING(str),
|
||||
PyInt_AsLong(lineno));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue