diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-06-05 13:24:21 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-06-05 13:24:21 -0700 |
commit | 9e4cd8b2a40ed79d37f399e438e2e11b740c867f (patch) | |
tree | c96a2f8ef3c9f953bdefcb05c0a3fc4cb7c9b208 | |
parent | 738ca226d4093e9e422b48e9bb460bb65076f973 (diff) | |
download | pdfium-9e4cd8b2a40ed79d37f399e438e2e11b740c867f.tar.xz |
Fix bad include path in fpdfview.cpp
Caught by checkdeps rules. That this still compiled is probably due to
some stray -I flag somewhere.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1149213008
-rw-r--r-- | fpdfsdk/src/fpdfview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/src/fpdfview.cpp b/fpdfsdk/src/fpdfview.cpp index ac7d0d6c8b..79d190d58c 100644 --- a/fpdfsdk/src/fpdfview.cpp +++ b/fpdfsdk/src/fpdfview.cpp @@ -4,7 +4,7 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#include "../../../core/include/fxcrt/fx_safe_types.h" +#include "../../core/include/fxcrt/fx_safe_types.h" #include "../../public/fpdf_ext.h" #include "../../public/fpdf_progressive.h" #include "../../public/fpdfview.h" |