diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-04-03 14:53:05 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-04-03 20:37:46 +0000 |
commit | ba8ac3f14e5eecb0c37b0df67370304cc1682755 (patch) | |
tree | 0d347837349d7034747ddf7741ac1a0c137a379b /third_party/libjpeg/jmemsys.h | |
parent | 669a418f75c05d4a39e2bcaff2b7b93dec1c5764 (diff) | |
download | pdfium-ba8ac3f14e5eecb0c37b0df67370304cc1682755.tar.xz |
Drop FXSYS_ from file methods
This Cl drops the FXSYS_ from file methods which are the same on all
platforms.
Bug: pdfium:694
Change-Id: I095c64fed69bf70e00a2594fa94a1fdc71a7060e
Reviewed-on: https://pdfium-review.googlesource.com/3610
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'third_party/libjpeg/jmemsys.h')
-rw-r--r-- | third_party/libjpeg/jmemsys.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/libjpeg/jmemsys.h b/third_party/libjpeg/jmemsys.h index 896688181b..df697a062b 100644 --- a/third_party/libjpeg/jmemsys.h +++ b/third_party/libjpeg/jmemsys.h @@ -129,7 +129,7 @@ typedef struct backing_store_struct { /* Private fields for system-dependent backing-store management */ /* For a typical implementation with temp files, we need: */ - FXSYS_FILE * temp_file; /* stdio reference to temp file */ + FILE* temp_file; /* stdio reference to temp file */ char temp_name[TEMP_NAME_LENGTH]; /* name of temp file */ } backing_store_info; |