aboutsummaryrefslogtreecommitdiff
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
parent6050618096ab058d29264a6d6b604275b44121bb (diff)
downloadbusybox-w32-2be4797a06849cf5c9c4f97e1489d70b7fc8be36.tar.gz
busybox-w32-2be4797a06849cf5c9c4f97e1489d70b7fc8be36.tar.bz2
busybox-w32-2be4797a06849cf5c9c4f97e1489d70b7fc8be36.zip
Fix error message.
-rw-r--r--insmod.c6
-rw-r--r--modutils/insmod.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/insmod.c b/insmod.c
index 8267606e1..2b7ae961a 100644
--- a/insmod.c
+++ b/insmod.c
@@ -77,7 +77,7 @@
77#ifndef MODUTILS_MODULE_H 77#ifndef MODUTILS_MODULE_H
78#define MODUTILS_MODULE_H 1 78#define MODUTILS_MODULE_H 1
79 79
80#ident "$Id: insmod.c,v 1.26 2000/09/28 20:52:55 proski Exp $" 80#ident "$Id: insmod.c,v 1.27 2000/10/23 17:55:27 kraai Exp $"
81 81
82/* This file contains the structures used by the 2.0 and 2.1 kernels. 82/* This file contains the structures used by the 2.0 and 2.1 kernels.
83 We do not use the kernel headers directly because we do not wish 83 We do not use the kernel headers directly because we do not wish
@@ -283,7 +283,7 @@ int delete_module(const char *);
283#ifndef MODUTILS_OBJ_H 283#ifndef MODUTILS_OBJ_H
284#define MODUTILS_OBJ_H 1 284#define MODUTILS_OBJ_H 1
285 285
286#ident "$Id: insmod.c,v 1.26 2000/09/28 20:52:55 proski Exp $" 286#ident "$Id: insmod.c,v 1.27 2000/10/23 17:55:27 kraai Exp $"
287 287
288/* The relocatable object is manipulated using elfin types. */ 288/* The relocatable object is manipulated using elfin types. */
289 289
@@ -2964,7 +2964,7 @@ extern int insmod_main( int argc, char **argv)
2964 m_size); 2964 m_size);
2965 goto out; 2965 goto out;
2966 default: 2966 default:
2967 errorMsg("create_module: %s: %s", m_name, strerror(errno)); 2967 errorMsg("create_module: %s: %s\n", m_name, strerror(errno));
2968 goto out; 2968 goto out;
2969 } 2969 }
2970 2970
diff --git a/modutils/insmod.c b/modutils/insmod.c
index 8267606e1..2b7ae961a 100644
--- a/modutils/insmod.c
+++ b/modutils/insmod.c
@@ -77,7 +77,7 @@
77#ifndef MODUTILS_MODULE_H 77#ifndef MODUTILS_MODULE_H
78#define MODUTILS_MODULE_H 1 78#define MODUTILS_MODULE_H 1
79 79
80#ident "$Id: insmod.c,v 1.26 2000/09/28 20:52:55 proski Exp $" 80#ident "$Id: insmod.c,v 1.27 2000/10/23 17:55:27 kraai Exp $"
81 81
82/* This file contains the structures used by the 2.0 and 2.1 kernels. 82/* This file contains the structures used by the 2.0 and 2.1 kernels.
83 We do not use the kernel headers directly because we do not wish 83 We do not use the kernel headers directly because we do not wish
@@ -283,7 +283,7 @@ int delete_module(const char *);
283#ifndef MODUTILS_OBJ_H 283#ifndef MODUTILS_OBJ_H
284#define MODUTILS_OBJ_H 1 284#define MODUTILS_OBJ_H 1
285 285
286#ident "$Id: insmod.c,v 1.26 2000/09/28 20:52:55 proski Exp $" 286#ident "$Id: insmod.c,v 1.27 2000/10/23 17:55:27 kraai Exp $"
287 287
288/* The relocatable object is manipulated using elfin types. */ 288/* The relocatable object is manipulated using elfin types. */
289 289
@@ -2964,7 +2964,7 @@ extern int insmod_main( int argc, char **argv)
2964 m_size); 2964 m_size);
2965 goto out; 2965 goto out;
2966 default: 2966 default:
2967 errorMsg("create_module: %s: %s", m_name, strerror(errno)); 2967 errorMsg("create_module: %s: %s\n", m_name, strerror(errno));
2968 goto out; 2968 goto out;
2969 } 2969 }
2970 2970