aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-10-23 17:55:27 +0000
committerkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-10-23 17:55:27 +0000
commitde43f7475207db16f6aca6ed70d579a0e4671506 (patch)
treee5107902b14dd91fa49c1ed41f0c6d4e735c925f
parentdf8b3de794a9ffc5ab738115cee06a6267143014 (diff)
downloadbusybox-w32-de43f7475207db16f6aca6ed70d579a0e4671506.tar.gz
busybox-w32-de43f7475207db16f6aca6ed70d579a0e4671506.tar.bz2
busybox-w32-de43f7475207db16f6aca6ed70d579a0e4671506.zip
Fix error message.
git-svn-id: svn://busybox.net/trunk/busybox@1221 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to '')
-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