summaryrefslogtreecommitdiff
path: root/manual/filesys.texi
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-08-12 19:15:49 +0000
committerUlrich Drepper <drepper@redhat.com>2001-08-12 19:15:49 +0000
commit60ab36c14461253770ebc1b9b3e4d4cb604ba277 (patch)
tree081213225aed015be271c534098e80b351c9c1dd /manual/filesys.texi
parent3ca9e670b3dfeda650bf293429b11498d5d25d60 (diff)
(Working Directory): Don't use TAB in example.
Diffstat (limited to 'manual/filesys.texi')
-rw-r--r--manual/filesys.texi2
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;