summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/test/test-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test-util.c b/src/test/test-util.c
index 69e3f5d3ae..1850f97723 100644
--- a/src/test/test-util.c
+++ b/src/test/test-util.c
@@ -212,7 +212,7 @@ static void test_safe_atod(void) {
assert_se(r == -EINVAL);
errno = 0;
- assert_se(fabs(strtod("0,5", &e) - 0.5) < 0.00001);
+ assert_se(fabs(strtod("0.5", &e) - 0.5) < 0.00001);
/* And check again, reset */
setlocale(LC_NUMERIC, "C");