diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2016-03-07 15:02:43 -0500 |
---|---|---|
committer | Dan Sinclair <dsinclair@chromium.org> | 2016-03-07 15:02:43 -0500 |
commit | 3b08a77ca0ff428c84b6d773c61d0f81259e51bb (patch) | |
tree | 4b58932f638e3e87266271579bb0379f7afd78ab /xfa/src/fxbarcode/oned | |
parent | 09ca162bb06543d914758db7e6387c250cef8a1b (diff) | |
download | pdfium-3b08a77ca0ff428c84b6d773c61d0f81259e51bb.tar.xz |
Remove _FX_WINAPI_PARTITION_APP_
This does not appear to ever be defined, removed.
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1773753002 .
Diffstat (limited to 'xfa/src/fxbarcode/oned')
-rw-r--r-- | xfa/src/fxbarcode/oned/BC_OnedCode128Reader.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/xfa/src/fxbarcode/oned/BC_OnedCode128Reader.cpp b/xfa/src/fxbarcode/oned/BC_OnedCode128Reader.cpp index 582f93bc15..33be8c57d7 100644 --- a/xfa/src/fxbarcode/oned/BC_OnedCode128Reader.cpp +++ b/xfa/src/fxbarcode/oned/BC_OnedCode128Reader.cpp @@ -306,11 +306,7 @@ CFX_ByteString CBC_OnedCode128Reader::DecodeRow(int32_t rowNumber, result += '0'; } FX_CHAR temp[128]; -#if defined(_FX_WINAPI_PARTITION_APP_) - sprintf_s(temp, 128, "%d", code); -#else sprintf(temp, "%d", code); -#endif result += temp; } else { if (code != CODE_STOP) { |