diff options
Diffstat (limited to 'malloc/tst-mtrace.c')
-rw-r--r-- | malloc/tst-mtrace.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/malloc/tst-mtrace.c b/malloc/tst-mtrace.c index e750bc8967..9b5151c7e0 100644 --- a/malloc/tst-mtrace.c +++ b/malloc/tst-mtrace.c @@ -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); |