aboutsummaryrefslogtreecommitdiff
path: root/insmod.c
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2000-10-23 17:55:27 +0000
committerMatt Kraai <kraai@debian.org>2000-10-23 17:55:27 +0000
commit2be4797a06849cf5c9c4f97e1489d70b7fc8be36 (patch)
treee5107902b14dd91fa49c1ed41f0c6d4e735c925f /insmod.c
parent6050618096ab058d29264a6d6b604275b44121bb (diff)
downloadbusybox-2be4797a06849cf5c9c4f97e1489d70b7fc8be36.tar.gz
Fix error message.
Diffstat (limited to 'insmod.c')
-rw-r--r--insmod.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/insmod.c b/insmod.c
index 8267606e1..2b7ae961a 100644
--- a/insmod.c
+++ b/insmod.c
@@ -77,7 +77,7 @@
#ifndef MODUTILS_MODULE_H
#define MODUTILS_MODULE_H 1
-#ident "$Id: insmod.c,v 1.26 2000/09/28 20:52:55 proski Exp $"
+#ident "$Id: insmod.c,v 1.27 2000/10/23 17:55:27 kraai Exp $"
/* This file contains the structures used by the 2.0 and 2.1 kernels.
We do not use the kernel headers directly because we do not wish
@@ -283,7 +283,7 @@ int delete_module(const char *);
#ifndef MODUTILS_OBJ_H
#define MODUTILS_OBJ_H 1
-#ident "$Id: insmod.c,v 1.26 2000/09/28 20:52:55 proski Exp $"
+#ident "$Id: insmod.c,v 1.27 2000/10/23 17:55:27 kraai Exp $"
/* The relocatable object is manipulated using elfin types. */
@@ -2964,7 +2964,7 @@ extern int insmod_main( int argc, char **argv)
m_size);
goto out;
default:
- errorMsg("create_module: %s: %s", m_name, strerror(errno));
+ errorMsg("create_module: %s: %s\n", m_name, strerror(errno));
goto out;
}