aboutsummaryrefslogtreecommitdiff
path: root/procps/fuser.c
diff options
context:
space:
mode:
authorPaul Fox <pgf@brightstareng.com>2006-01-20 21:48:06 +0000
committerPaul Fox <pgf@brightstareng.com>2006-01-20 21:48:06 +0000
commitf9d40d6815aedda4b950ee642c6b0ca139481e91 (patch)
tree0d9b9b06167663f319ee618d5b81b72a73344517 /procps/fuser.c
parentc1d69906a0c5f28f3d84c14afb3b74c8f19f81c1 (diff)
downloadbusybox-f9d40d6815aedda4b950ee642c6b0ca139481e91.tar.gz
compile on 2.96 for a while longer -- no floating declarations.
Diffstat (limited to 'procps/fuser.c')
-rw-r--r--procps/fuser.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/procps/fuser.c b/procps/fuser.c
index 66e0988ae..0258945ea 100644
--- a/procps/fuser.c
+++ b/procps/fuser.c
@@ -46,7 +46,7 @@ static int fuser_option(char *option)
if(!(strlen(option))) return 0;
if(option[0] != '-') return 0;
- *++option;
+ ++option;
while(*option != '\0') {
if(*option == 'm') opt |= FUSER_OPT_MOUNT;
else if(*option == 'k') opt |= FUSER_OPT_KILL;
@@ -57,7 +57,7 @@ static int fuser_option(char *option)
bb_error_msg_and_die(
"Unsupported option '%c'", *option);
}
- *++option;
+ ++option;
}
return opt;
}
@@ -278,8 +278,7 @@ static int fuser_scan_proc_pids(int opts, inode_list *ilist, pid_list *plist)
}
static int fuser_print_pid_list(pid_list *plist) {
- pid_list *curr;
- curr = plist;
+ pid_list *curr = plist;
if(plist == NULL) return 0;
while(curr != NULL) {
@@ -291,8 +290,7 @@ static int fuser_print_pid_list(pid_list *plist) {
}
static int fuser_kill_pid_list(pid_list *plist, int sig) {
- pid_list *curr;
- curr = plist;
+ pid_list *curr = plist;
pid_t mypid = getpid();
int success = 1;