aboutsummaryrefslogtreecommitdiff
path: root/modutils/modprobe.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-04-11 17:04:29 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-04-11 17:04:29 +0000
commit6398cf477d96cea03459835ed7462d2e8d5b2a71 (patch)
treeb1ffb40817fcb6a50e970ca9ef33624c56bd3a2a /modutils/modprobe.c
parente4f2d064b0fcffc8897089e1c80e6e2d61b6805d (diff)
downloadbusybox-w32-6398cf477d96cea03459835ed7462d2e8d5b2a71.tar.gz
busybox-w32-6398cf477d96cea03459835ed7462d2e8d5b2a71.tar.bz2
busybox-w32-6398cf477d96cea03459835ed7462d2e8d5b2a71.zip
style fixes, no code changes.
Diffstat (limited to 'modutils/modprobe.c')
-rw-r--r--modutils/modprobe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modutils/modprobe.c b/modutils/modprobe.c
index 09494ca5f..d6a9553d5 100644
--- a/modutils/modprobe.c
+++ b/modutils/modprobe.c
@@ -677,8 +677,8 @@ static int check_pattern(const char* pat_src, const char* mod_src) {
677 char* mod; 677 char* mod;
678 char* p; 678 char* p;
679 679
680 pat = xstrdup (pat_src); 680 pat = xstrdup(pat_src);
681 mod = xstrdup (mod_src); 681 mod = xstrdup(mod_src);
682 682
683 for (p = pat; (p = strchr(p, '-')); *p++ = '_'); 683 for (p = pat; (p = strchr(p, '-')); *p++ = '_');
684 for (p = mod; (p = strchr(p, '-')); *p++ = '_'); 684 for (p = mod; (p = strchr(p, '-')); *p++ = '_');