diff options
author | Elliott Hughes <enh@google.com> | 2013-02-12 20:18:49 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2013-02-12 20:18:49 -0800 |
commit | 5227663d2ffd70dc32f03a7a5b103ef0d3fc0584 (patch) | |
tree | 215ba2dfc40261cbe16e229b3276d3441a2d9f6d /tests/math_test.cpp | |
parent | 59aeff94178e03c908791695f6dd4c9bd8c7115b (diff) | |
download | android_bionic-5227663d2ffd70dc32f03a7a5b103ef0d3fc0584.tar.gz android_bionic-5227663d2ffd70dc32f03a7a5b103ef0d3fc0584.tar.bz2 android_bionic-5227663d2ffd70dc32f03a7a5b103ef0d3fc0584.zip |
Put the right number of Ls after 64-bit constants.
Change-Id: I9f96259f21e42a84b9ebe20655fe0edb31f41892
Diffstat (limited to 'tests/math_test.cpp')
-rw-r--r-- | tests/math_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/math_test.cpp b/tests/math_test.cpp index 8e0abdbb8..458a1468d 100644 --- a/tests/math_test.cpp +++ b/tests/math_test.cpp @@ -37,7 +37,7 @@ double double_subnormal() { double d; uint64_t i; } u; - u.i = 0x000fffffffffffffL; + u.i = 0x000fffffffffffffLL; return u.d; } |