diff options
author | Denis Vlasenko | 2007-04-10 15:42:06 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-04-10 15:42:06 +0000 |
commit | ff131b980d524a33d8a43cefe65e14f64a43f2da (patch) | |
tree | 82d252f04f9a8511be452dcd8b5e322c59653c72 /modutils/modprobe.c | |
parent | 163516da3ae54a587fb476c621793bd206f380c2 (diff) | |
download | busybox-ff131b980d524a33d8a43cefe65e14f64a43f2da.zip busybox-ff131b980d524a33d8a43cefe65e14f64a43f2da.tar.gz |
style fixes. No code changes.
Diffstat (limited to 'modutils/modprobe.c')
-rw-r--r-- | modutils/modprobe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modutils/modprobe.c b/modutils/modprobe.c index 57e19b4..09494ca 100644 --- a/modutils/modprobe.c +++ b/modutils/modprobe.c @@ -686,8 +686,8 @@ static int check_pattern(const char* pat_src, const char* mod_src) { ret = fnmatch(pat, mod, 0); if (ENABLE_FEATURE_CLEAN_UP) { - free (pat); - free (mod); + free(pat); + free(mod); } return ret; |