aboutsummaryrefslogtreecommitdiff
path: root/modutils/insmod.c
diff options
context:
space:
mode:
Diffstat (limited to 'modutils/insmod.c')
-rw-r--r--modutils/insmod.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modutils/insmod.c b/modutils/insmod.c
index 3d9add19a..882fcf80f 100644
--- a/modutils/insmod.c
+++ b/modutils/insmod.c
@@ -4186,10 +4186,10 @@ int insmod_main( int argc, char **argv)
4186 m_addr = create_module(m_name, m_size); 4186 m_addr = create_module(m_name, m_size);
4187 if (m_addr == -1) switch (errno) { 4187 if (m_addr == -1) switch (errno) {
4188 case EEXIST: 4188 case EEXIST:
4189 bb_error_msg("A module named %s already exists", m_name); 4189 bb_error_msg("a module named %s already exists", m_name);
4190 goto out; 4190 goto out;
4191 case ENOMEM: 4191 case ENOMEM:
4192 bb_error_msg("Can't allocate kernel memory for module; needed %lu bytes", 4192 bb_error_msg("can't allocate kernel memory for module; needed %lu bytes",
4193 m_size); 4193 m_size);
4194 goto out; 4194 goto out;
4195 default: 4195 default: