Pluralss only need one s, not 2 (intss -> ints)

This commit is contained in:
Neal Norwitz 2008-03-27 06:52:01 +00:00
parent 5802bb2319
commit c0a56ff908
2 changed files with 2 additions and 2 deletions

View File

@ -1719,7 +1719,7 @@ PyFloat_Fini(void)
}
else {
fprintf(stderr,
": %" PY_FORMAT_SIZE_T "d unfreed floats%s in %"
": %" PY_FORMAT_SIZE_T "d unfreed float%s in %"
PY_FORMAT_SIZE_T "d out of %"
PY_FORMAT_SIZE_T "d block%s\n",
fsum, fsum == 1 ? "" : "s",

View File

@ -1378,7 +1378,7 @@ PyInt_Fini(void)
}
else {
fprintf(stderr,
": %" PY_FORMAT_SIZE_T "d unfreed ints%s in %"
": %" PY_FORMAT_SIZE_T "d unfreed int%s in %"
PY_FORMAT_SIZE_T "d out of %"
PY_FORMAT_SIZE_T "d block%s\n",
isum, isum == 1 ? "" : "s",