]> git.tuebingen.mpg.de Git - adu.git/commitdiff
fd.c: Make __chdir() static.
authorAndre Noll <maan@systemlinux.org>
Mon, 25 Jun 2012 16:16:58 +0000 (18:16 +0200)
committerAndre Noll <maan@systemlinux.org>
Mon, 25 Jun 2012 16:16:58 +0000 (18:16 +0200)
This function is only used in fd.c.

fd.c

diff --git a/fd.c b/fd.c
index e661e71fa32d2c20d92f558f9f40f62f576b9ba1..a4d18a1f8f1684f81564e02084cab2f193756d4a 100644 (file)
--- a/fd.c
+++ b/fd.c
@@ -124,7 +124,7 @@ out:
  *
  * \return Standard.
  */
-int __chdir(const char *path)
+static int __chdir(const char *path)
 {
        int ret = chdir(path);