aboutsummaryrefslogtreecommitdiff
path: root/miscutils/devfsd.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-03-11 13:43:10 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-03-11 13:43:10 +0000
commitbaca1759129945fcd03d96ccc840892401b5a1af (patch)
tree5a3f14e441d313d974c851148046926980840510 /miscutils/devfsd.c
parentecea8f201e77aff3e9a4fe5b3a435f463a842687 (diff)
downloadbusybox-w32-baca1759129945fcd03d96ccc840892401b5a1af.tar.gz
busybox-w32-baca1759129945fcd03d96ccc840892401b5a1af.tar.bz2
busybox-w32-baca1759129945fcd03d96ccc840892401b5a1af.zip
kill superfluous returns at the end of void functions
Diffstat (limited to 'miscutils/devfsd.c')
-rw-r--r--miscutils/devfsd.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/miscutils/devfsd.c b/miscutils/devfsd.c
index 96c172cb8..0069b280e 100644
--- a/miscutils/devfsd.c
+++ b/miscutils/devfsd.c
@@ -583,7 +583,6 @@ read_config_file_err:
583 if(optional == 0 && errno == ENOENT) 583 if(optional == 0 && errno == ENOENT)
584 msg_logger_and_die(LOG_ERR, "read config file: %s: %m", path); 584 msg_logger_and_die(LOG_ERR, "read config file: %s: %m", path);
585 } 585 }
586 return;
587} /* End Function read_config_file */ 586} /* End Function read_config_file */
588 587
589static void process_config_line (const char *line, unsigned long *event_mask) 588static void process_config_line (const char *line, unsigned long *event_mask)
@@ -969,7 +968,6 @@ static void action_copy (const struct devfsd_notify_struct *info,
969 ret = copy_inode (destination, &dest_stat, new_mode, source, &source_stat); 968 ret = copy_inode (destination, &dest_stat, new_mode, source, &source_stat);
970 if (ENABLE_DEBUG && ret && (errno != EEXIST)) 969 if (ENABLE_DEBUG && ret && (errno != EEXIST))
971 debug_msg_logger(LOG_ERR, "copy_inode: %s to %s: %m", source, destination); 970 debug_msg_logger(LOG_ERR, "copy_inode: %s to %s: %m", source, destination);
972 return;
973} /* End Function action_copy */ 971} /* End Function action_copy */
974 972
975static void action_compat (const struct devfsd_notify_struct *info, unsigned int action) 973static void action_compat (const struct devfsd_notify_struct *info, unsigned int action)