aboutsummaryrefslogtreecommitdiff
path: root/pwd.c
diff options
context:
space:
mode:
authormarkw <markw@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-12-07 19:56:48 +0000
committermarkw <markw@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-12-07 19:56:48 +0000
commitb529ac16d7308cb6e852b286b42ebe971a32cd3f (patch)
treea55822621d54bd82c54e272fa986e45698fea0f1 /pwd.c
parentad3527fc1543422f053975ac4f37365a8585d7c5 (diff)
downloadbusybox-w32-b529ac16d7308cb6e852b286b42ebe971a32cd3f.tar.gz
busybox-w32-b529ac16d7308cb6e852b286b42ebe971a32cd3f.tar.bz2
busybox-w32-b529ac16d7308cb6e852b286b42ebe971a32cd3f.zip
Changed names of functions in utility.c and all affected files, to make
compliant with the style guide. Everybody rebuild your tags file! git-svn-id: svn://busybox.net/trunk/busybox@1398 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'pwd.c')
-rw-r--r--pwd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pwd.c b/pwd.c
index 54129b175..71731944c 100644
--- a/pwd.c
+++ b/pwd.c
@@ -31,7 +31,7 @@ extern int pwd_main(int argc, char **argv)
31 char buf[BUFSIZ + 1]; 31 char buf[BUFSIZ + 1];
32 32
33 if (getcwd(buf, sizeof(buf)) == NULL) 33 if (getcwd(buf, sizeof(buf)) == NULL)
34 fatalError("%s\n", strerror(errno)); 34 error_msg_and_die("%s\n", strerror(errno));
35 35
36 printf("%s\n", buf); 36 printf("%s\n", buf);
37 return EXIT_SUCCESS; 37 return EXIT_SUCCESS;