diff options
author | Tom Sepez <tsepez@chromium.org> | 2014-12-04 10:10:34 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2014-12-04 10:10:34 -0800 |
commit | df448f5c421440c8884c87da6055c0b5cc62c5ca (patch) | |
tree | 6f15d3c7e65360ec430672d8ad851d158e333c25 /core/src/fpdfapi/fpdf_font | |
parent | 553efe2b5cf65959fa1e547ebb66ffc60b678028 (diff) | |
download | pdfium-df448f5c421440c8884c87da6055c0b5cc62c5ca.tar.xz |
Remove needless casts of (narrow) string literals.
Follow-up to work on (wide) string literals.
R=bo_xu@foxitsoftware.com
Review URL: https://codereview.chromium.org/751113003
Diffstat (limited to 'core/src/fpdfapi/fpdf_font')
-rw-r--r-- | core/src/fpdfapi/fpdf_font/fpdf_font_utility.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/fpdfapi/fpdf_font/fpdf_font_utility.cpp b/core/src/fpdfapi/fpdf_font/fpdf_font_utility.cpp index d7c725cc2f..776d82e21c 100644 --- a/core/src/fpdfapi/fpdf_font/fpdf_font_utility.cpp +++ b/core/src/fpdfapi/fpdf_font/fpdf_font_utility.cpp @@ -17,7 +17,7 @@ typedef struct { } FXFC_PACKAGE; FX_LPVOID FXFC_LoadPackage(FX_LPCSTR name) { - FXSYS_FILE* file = FXSYS_fopen(name, (FX_LPCSTR)"rb"); + FXSYS_FILE* file = FXSYS_fopen(name, "rb"); if (file == NULL) { return NULL; } |