diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-03-10 15:23:02 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-03-10 15:23:02 -0700 |
commit | 3c676ecee839e6b0a1e5c5d4b3524edcb0bd2a42 (patch) | |
tree | 5bd53ba91d6986c216880153cda60495ac4eec12 /core/src/fxcodec/libjpeg | |
parent | 1e580a10fad09833552deb797128e00c50d74bce (diff) | |
download | pdfium-3c676ecee839e6b0a1e5c5d4b3524edcb0bd2a42.tar.xz |
Kill remaining sprintfs
I thought I had done this already, apart from the third-party
libraries, but there were a couple remaining (the third-party
libraries will still call this, they should be tweaked
upstream as needed).
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/999543002
Diffstat (limited to 'core/src/fxcodec/libjpeg')
-rw-r--r-- | core/src/fxcodec/libjpeg/fpdfapi_jerror.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/fxcodec/libjpeg/fpdfapi_jerror.c b/core/src/fxcodec/libjpeg/fpdfapi_jerror.c index 943ced798f..282f889ebd 100644 --- a/core/src/fxcodec/libjpeg/fpdfapi_jerror.c +++ b/core/src/fxcodec/libjpeg/fpdfapi_jerror.c @@ -177,9 +177,9 @@ format_message (j_common_ptr cinfo, char * buffer) /* Format the message into the passed buffer */ if (isstring) - FXSYS_sprintf(buffer, msgtext, err->msg_parm.s); + sprintf(buffer, msgtext, err->msg_parm.s); else - FXSYS_sprintf(buffer, msgtext, + sprintf(buffer, msgtext, err->msg_parm.i[0], err->msg_parm.i[1], err->msg_parm.i[2], err->msg_parm.i[3], err->msg_parm.i[4], err->msg_parm.i[5], |