diff options
author | Ron Yorston <rmy@pobox.com> | 2022-01-06 07:46:38 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2022-01-06 07:46:38 +0000 |
commit | b8751bbc9ac24e71fbe1e79c69074b4c87a134d8 (patch) | |
tree | 336d653df8387b9b1d3c6e46caa373c00cb9b2b2 /modutils | |
parent | b15f68214da209b5b293039c09c00f490c0cc193 (diff) | |
parent | 6062c0d19bc201cbeb61b8875598cdd7a14a5ae0 (diff) | |
download | busybox-w32-b8751bbc9ac24e71fbe1e79c69074b4c87a134d8.tar.gz busybox-w32-b8751bbc9ac24e71fbe1e79c69074b4c87a134d8.tar.bz2 busybox-w32-b8751bbc9ac24e71fbe1e79c69074b4c87a134d8.zip |
Merge busybox into merge
Fix merge conflict in miscutils/less.c.
Use exit_SUCCESS() where possible.
Diffstat (limited to 'modutils')
-rw-r--r-- | modutils/modprobe-small.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modutils/modprobe-small.c b/modutils/modprobe-small.c index db44a2ed0..b61651621 100644 --- a/modutils/modprobe-small.c +++ b/modutils/modprobe-small.c | |||
@@ -415,7 +415,7 @@ static FAST_FUNC int fileAction(struct recursive_state *state, | |||
415 | /* Load was successful, there is nothing else to do. | 415 | /* Load was successful, there is nothing else to do. |
416 | * This can happen ONLY for "top-level" module load, | 416 | * This can happen ONLY for "top-level" module load, |
417 | * not a dep, because deps don't do dirscan. */ | 417 | * not a dep, because deps don't do dirscan. */ |
418 | exit(EXIT_SUCCESS); | 418 | exit_SUCCESS(); |
419 | } | 419 | } |
420 | } | 420 | } |
421 | 421 | ||