diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-09-17 16:28:10 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-09-17 16:28:10 +0000 |
commit | 85e2f33ede6f8cb70f9f50f6fb18c7b0a6082212 (patch) | |
tree | 94c3c0678d1349497abe2db6004e9331e50f6d37 /libbb/xfuncs.c | |
parent | 75648f106cb64fb6ccbb4a79d89fd6aef7298081 (diff) | |
download | busybox-w32-85e2f33ede6f8cb70f9f50f6fb18c7b0a6082212.tar.gz busybox-w32-85e2f33ede6f8cb70f9f50f6fb18c7b0a6082212.tar.bz2 busybox-w32-85e2f33ede6f8cb70f9f50f6fb18c7b0a6082212.zip |
whitespace cleanup
git-svn-id: svn://busybox.net/trunk/busybox@16142 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb/xfuncs.c')
-rw-r--r-- | libbb/xfuncs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c index 3baf7b251..d77bf3839 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c | |||
@@ -489,8 +489,8 @@ void xlisten(int s, int backlog) | |||
489 | // xstat() - a stat() which dies on failure with meaningful error message | 489 | // xstat() - a stat() which dies on failure with meaningful error message |
490 | void xstat(char *name, struct stat *stat_buf) | 490 | void xstat(char *name, struct stat *stat_buf) |
491 | { | 491 | { |
492 | if (stat(name, stat_buf)) | 492 | if (stat(name, stat_buf)) |
493 | bb_perror_msg_and_die("Can't stat '%s'", name); | 493 | bb_perror_msg_and_die("Can't stat '%s'", name); |
494 | } | 494 | } |
495 | #endif | 495 | #endif |
496 | 496 | ||