diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-11-28 22:07:30 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-11-28 22:07:30 (GMT) |
commit | 75cdad558472781162a83439f3e6edb61d4d40e6 (patch) | |
tree | d4c4d78f70a7e37860209ac8a2b9019d24b997cc /Modules/almodule.c | |
parent | 179c48c60e2476643863313ee0e0aa01bf338ad9 (diff) | |
download | cpython-75cdad558472781162a83439f3e6edb61d4d40e6.zip cpython-75cdad558472781162a83439f3e6edb61d4d40e6.tar.gz cpython-75cdad558472781162a83439f3e6edb61d4d40e6.tar.bz2 |
More sprintf -> PyOS_snprintf.
Diffstat (limited to 'Modules/almodule.c')
-rw-r--r-- | Modules/almodule.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/almodule.c b/Modules/almodule.c index 9e26081..e9b2114 100644 --- a/Modules/almodule.c +++ b/Modules/almodule.c @@ -1519,7 +1519,8 @@ al_GetParams(PyObject *self, PyObject *args) for (i = 0; i < npvs; i++) { if (pvs[i].sizeOut < 0) { char buf[32]; - sprintf(buf, "problem with param %d", i); + PyOS_snprintf(buf, sizeof(buf), + "problem with param %d", i); PyErr_SetString(ErrorObject, buf); goto error; } |