summaryrefslogtreecommitdiff
path: root/tests/test-calloc-gnu.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-calloc-gnu.c')
-rw-r--r--tests/test-calloc-gnu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-calloc-gnu.c b/tests/test-calloc-gnu.c
index bcd47d4f01..fd72c44c60 100644
--- a/tests/test-calloc-gnu.c
+++ b/tests/test-calloc-gnu.c
@@ -63,7 +63,7 @@ main ()
ASSERT (p == NULL);
ASSERT (errno == ENOMEM);
- p = calloc (SIZE_MAX / n + 1, identity (n));
+ p = calloc (SIZE_MAX / n + 1, identity (n));
ASSERT (p == NULL);
ASSERT (errno == ENOMEM);
}