diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-10-02 14:29:08 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-10-02 18:42:58 +0000 |
commit | c065d883d995700b6cb5a00bd027232afded7ae5 (patch) | |
tree | edf3b3861a0221b13dd96cf7079ca1cf492b422a /core/fxcrt | |
parent | ac571105110c124f2fb74aa5a4211de2afadc830 (diff) | |
download | pdfium-c065d883d995700b6cb5a00bd027232afded7ae5.tar.xz |
Remove extraneous ;s
Bug: pdfium:912
Change-Id: Iea61260ccc972627950b470a44ab21dbd2b4045b
Reviewed-on: https://pdfium-review.googlesource.com/15170
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core/fxcrt')
-rw-r--r-- | core/fxcrt/fx_system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fxcrt/fx_system.h b/core/fxcrt/fx_system.h index aa9b8490f9..8e2957bc98 100644 --- a/core/fxcrt/fx_system.h +++ b/core/fxcrt/fx_system.h @@ -213,7 +213,7 @@ const char* FXSYS_i64toa(int64_t value, char* str, int radix); int FXSYS_round(float f); #define FXSYS_sqrt2(a, b) (float)sqrt((a) * (a) + (b) * (b)) #ifdef __cplusplus -}; // extern C +} // extern C #endif // __cplusplus // To print a size_t value in a portable way: |