projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
018b155
)
insmod: make error reporting less verbose
author
Denis Vlasenko
<vda.linux@googlemail.com>
Tue, 6 Nov 2007 02:02:45 +0000
(
02:02
-0000)
committer
Denis Vlasenko
<vda.linux@googlemail.com>
Tue, 6 Nov 2007 02:02:45 +0000
(
02:02
-0000)
modutils/insmod.c
patch
|
blob
|
history
diff --git
a/modutils/insmod.c
b/modutils/insmod.c
index c3c57ede713628f83b9daf707b862020e71ecf5f..7d51d9db385e838ee0ca9a25922edac8d1f35faa 100644
(file)
--- a/
modutils/insmod.c
+++ b/
modutils/insmod.c
@@
-4241,8
+4241,8
@@
static int insmod_ng_main(int argc, char **argv)
ret = syscall(__NR_init_module, map, len, options);
if (ret != 0) {
- bb_
perror_msg_and_die("cannot insert '%s': %s (%li)
",
- filename, moderror(errno)
, ret
);
+ bb_
error_msg_and_die("cannot insert '%s': %s
",
+ filename, moderror(errno));
}
return 0;