diff options
Diffstat (limited to 'manual')
-rw-r--r-- | manual/filesys.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/filesys.texi b/manual/filesys.texi index d7ab4e4a7f..d3f8d3f8cf 100644 --- a/manual/filesys.texi +++ b/manual/filesys.texi @@ -99,7 +99,7 @@ gnu_getcwd () @{ char *buffer = (char *) xmalloc (size); if (getcwd (buffer, size) == buffer) - return buffer; + return buffer; free (buffer); if (errno != ERANGE) return 0; |