aboutsummaryrefslogtreecommitdiffstats
path: root/tests/math_test.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2013-02-12 20:18:49 -0800
committerElliott Hughes <enh@google.com>2013-02-12 20:18:49 -0800
commit5227663d2ffd70dc32f03a7a5b103ef0d3fc0584 (patch)
tree215ba2dfc40261cbe16e229b3276d3441a2d9f6d /tests/math_test.cpp
parent59aeff94178e03c908791695f6dd4c9bd8c7115b (diff)
downloadandroid_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.cpp2
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;
}