aboutsummaryrefslogtreecommitdiff
path: root/modutils/modprobe.c
diff options
context:
space:
mode:
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) {
char* mod;
char* p;
- pat = xstrdup (pat_src);
- mod = xstrdup (mod_src);
+ pat = xstrdup(pat_src);
+ mod = xstrdup(mod_src);
for (p = pat; (p = strchr(p, '-')); *p++ = '_');
for (p = mod; (p = strchr(p, '-')); *p++ = '_');