diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-07-19 22:50:47 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-07-19 22:50:47 +0000 |
commit | 2f6ae43b9c74d393a139007377895e8c50b8af9a (patch) | |
tree | 1f899a31345033e8a808de680a37f3cd3f13a656 /libbb | |
parent | 2a86a61c270a7d64bcc18a81b0d9004699b1be0f (diff) | |
download | busybox-w32-2f6ae43b9c74d393a139007377895e8c50b8af9a.tar.gz busybox-w32-2f6ae43b9c74d393a139007377895e8c50b8af9a.tar.bz2 busybox-w32-2f6ae43b9c74d393a139007377895e8c50b8af9a.zip |
stray trailing tabs removed
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/procps.c | 4 | ||||
-rw-r--r-- | libbb/xfuncs.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libbb/procps.c b/libbb/procps.c index 9817a1288..37593700a 100644 --- a/libbb/procps.c +++ b/libbb/procps.c | |||
@@ -170,8 +170,8 @@ procps_status_t *procps_scan(procps_status_t* sp, int flags) | |||
170 | if (flags & PSSCAN_CONTEXT) { | 170 | if (flags & PSSCAN_CONTEXT) { |
171 | if (getpidcon(sp->pid, &sp->context) < 0) | 171 | if (getpidcon(sp->pid, &sp->context) < 0) |
172 | sp->context = NULL; | 172 | sp->context = NULL; |
173 | } | 173 | } |
174 | #endif | 174 | #endif |
175 | 175 | ||
176 | filename_tail = filename + sprintf(filename, "/proc/%d", pid); | 176 | filename_tail = filename + sprintf(filename, "/proc/%d", pid); |
177 | 177 | ||
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,...) | |||
670 | int bb_ioctl_or_warn(int fd, int request, void *argp, const char *ioctl_name) | 670 | int bb_ioctl_or_warn(int fd, int request, void *argp, const char *ioctl_name) |
671 | { | 671 | { |
672 | int ret; | 672 | int ret; |
673 | 673 | ||
674 | ret = ioctl(fd, request, argp); | 674 | ret = ioctl(fd, request, argp); |
675 | if (ret < 0) | 675 | if (ret < 0) |
676 | bb_perror_msg("%s", ioctl_name); | 676 | bb_perror_msg("%s", ioctl_name); |
@@ -685,7 +685,7 @@ void bb_xioctl(int fd, int request, void *argp, const char *ioctl_name) | |||
685 | int bb_ioctl_or_warn(int fd, int request, void *argp) | 685 | int bb_ioctl_or_warn(int fd, int request, void *argp) |
686 | { | 686 | { |
687 | int ret; | 687 | int ret; |
688 | 688 | ||
689 | ret = ioctl(fd, request, argp); | 689 | ret = ioctl(fd, request, argp); |
690 | if (ret < 0) | 690 | if (ret < 0) |
691 | bb_perror_msg("ioctl %#x failed", request); | 691 | bb_perror_msg("ioctl %#x failed", request); |