diff options
author | Robin Watts <robin.watts@artifex.com> | 2012-10-08 15:57:17 +0100 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2012-10-08 16:57:44 +0100 |
commit | d66ff690beb8c49e39311c9f6208fd4ac1fc1e1f (patch) | |
tree | 23b493404d2c0a9d26e1ff00a35030b8e3f3fff1 /fitz | |
parent | 6a7a1f2772a0468055f0d4c31777c8d80e206fa7 (diff) | |
download | mupdf-d66ff690beb8c49e39311c9f6208fd4ac1fc1e1f.tar.xz |
Bug 693368: Fix typo "atin2f".
Silly typo in LOCAL_TRIG code. Thanks to Robert Jedrzejczyk for
reporting this.
Diffstat (limited to 'fitz')
-rw-r--r-- | fitz/fitz-internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fitz/fitz-internal.h b/fitz/fitz-internal.h index e2e75407..810ccc18 100644 --- a/fitz/fitz-internal.h +++ b/fitz/fitz-internal.h @@ -217,7 +217,7 @@ static inline float my_atan2f(float o, float a) #define sinf(x) my_sinf(x) #define cosf(x) my_sinf(((float)(M_PI/2.0f)) + (x)) -#define atin2f(x,y) my_atan2f((x),(y)) +#define atan2f(x,y) my_atan2f((x),(y)) #endif /* Range checking atof */ |