summaryrefslogtreecommitdiff
path: root/malloc/tst-mtrace.c
diff options
context:
space:
mode:
Diffstat (limited to 'malloc/tst-mtrace.c')
-rw-r--r--malloc/tst-mtrace.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/malloc/tst-mtrace.c b/malloc/tst-mtrace.c
index 93d560d59e..9b5151c7e0 100644
--- a/malloc/tst-mtrace.c
+++ b/malloc/tst-mtrace.c
@@ -1,5 +1,5 @@
/* Test program for mtrace.
- Copyright (C) 2000-2013 Free Software Foundation, Inc.
+ Copyright (C) 2000-2014 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -55,20 +55,20 @@ main (void)
ssize_t n = getline (&line, &linelen, fp);
if (n < 0)
- break;
+ break;
if (n == 0)
- continue;
+ continue;
copy = strdup (line);
if (copy == NULL)
- abort ();
+ abort ();
p = (char **) tsearch (copy, &root,
- (int (*) (const void *, const void *)) strcmp);
+ (int (*)(const void *, const void *))strcmp);
if (*p != copy)
- /* This line wasn't added. */
- free (copy);
+ /* This line wasn't added. */
+ free (copy);
}
fclose (fp);