From: Ulrich Drepper Date: Sun, 12 Aug 2001 19:15:49 +0000 (+0000) Subject: (Working Directory): Don't use TAB in example. X-Git-Tag: cvs/glibc-2_2_4~22 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=60ab36c14461253770ebc1b9b3e4d4cb604ba277;p=glibc.git (Working Directory): Don't use TAB in example. --- 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;