diff options
Diffstat (limited to 'tests/stdio_test.cpp')
-rw-r--r-- | tests/stdio_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/stdio_test.cpp b/tests/stdio_test.cpp index e9ec49979..479fd9d62 100644 --- a/tests/stdio_test.cpp +++ b/tests/stdio_test.cpp @@ -761,7 +761,7 @@ TEST(STDIO_TEST, snprintf_e) { snprintf(buf, sizeof(buf), "%e", 1.5); EXPECT_STREQ("1.500000e+00", buf); - snprintf(buf, sizeof(buf), "%Le", 1.5l); + snprintf(buf, sizeof(buf), "%Le", 1.5L); EXPECT_STREQ("1.500000e+00", buf); } |