diff options
Diffstat (limited to 'coreutils/realpath.c')
-rw-r--r-- | coreutils/realpath.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/realpath.c b/coreutils/realpath.c index 90a71ed7d..3bc40ee04 100644 --- a/coreutils/realpath.c +++ b/coreutils/realpath.c | |||
@@ -23,7 +23,7 @@ int realpath_main(int argc UNUSED_PARAM, char **argv) | |||
23 | 23 | ||
24 | do { | 24 | do { |
25 | char *resolved_path = xmalloc_realpath(*argv); | 25 | char *resolved_path = xmalloc_realpath(*argv); |
26 | if (resolved_path != NULL) { | 26 | if (resolved_path != NULL) { |
27 | puts(resolved_path); | 27 | puts(resolved_path); |
28 | free(resolved_path); | 28 | free(resolved_path); |
29 | } else { | 29 | } else { |