Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-07-20 02:50:47 +0400
committerDenis Vlasenko <vda.linux@googlemail.com>2007-07-20 02:50:47 +0400
commit2f6ae43b9c74d393a139007377895e8c50b8af9a (patch)
tree1f899a31345033e8a808de680a37f3cd3f13a656 /libbb/xfuncs.c
parent2a86a61c270a7d64bcc18a81b0d9004699b1be0f (diff)
stray trailing tabs removed
Diffstat (limited to 'libbb/xfuncs.c')
-rw-r--r--libbb/xfuncs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c
index fad111aa9..177247c6b 100644
--- a/libbb/xfuncs.c
+++ b/libbb/xfuncs.c
@@ -670,7 +670,7 @@ int ioctl_or_perror(int fd, int request, void *argp, const char *fmt,...)
int bb_ioctl_or_warn(int fd, int request, void *argp, const char *ioctl_name)
{
int ret;
-
+
ret = ioctl(fd, request, argp);
if (ret < 0)
bb_perror_msg("%s", ioctl_name);
@@ -685,7 +685,7 @@ void bb_xioctl(int fd, int request, void *argp, const char *ioctl_name)
int bb_ioctl_or_warn(int fd, int request, void *argp)
{
int ret;
-
+
ret = ioctl(fd, request, argp);
if (ret < 0)
bb_perror_msg("ioctl %#x failed", request);