diff options
author | Fred Drake <fdrake@acm.org> | 2000-08-18 19:53:25 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-08-18 19:53:25 (GMT) |
commit | 04e654a63c012cc321572e6dabbe70550c4f319f (patch) | |
tree | 41bfef54ba9e67fc0b622219094a31f5f5826134 | |
parent | ce4dc41b1a2be5b5335bcbc0865b145852a5c0e5 (diff) | |
download | cpython-04e654a63c012cc321572e6dabbe70550c4f319f.zip cpython-04e654a63c012cc321572e6dabbe70550c4f319f.tar.gz cpython-04e654a63c012cc321572e6dabbe70550c4f319f.tar.bz2 |
Remove a couple of warnings turned up by "gcc -Wall".
-rw-r--r-- | Python/ceval.c | 3 | ||||
-rw-r--r-- | Python/exceptions.c | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index af28cdc..92fa887 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -2856,8 +2856,9 @@ find_from_args(PyFrameObject *f, int nexti) if (!name) Py_DECREF(list); else { - if (PyList_Append(list, name) < 0) + if (PyList_Append(list, name) < 0) { Py_DECREF(list); + } Py_DECREF(name); } } else { diff --git a/Python/exceptions.c b/Python/exceptions.c index b441f51..6d6291c 100644 --- a/Python/exceptions.c +++ b/Python/exceptions.c @@ -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)); |