diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-08-28 00:43:07 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-08-28 00:43:07 +0000 |
commit | b225e2a76bcd2b1f3f919a09dba1e186c0d4fa65 (patch) | |
tree | cb40909520a92fd5c133d831a4d34865a15ae6f0 /modutils/insmod.c | |
parent | 785001468dffa2d532b6efa5603622dd85d2bc74 (diff) | |
download | busybox-w32-b225e2a76bcd2b1f3f919a09dba1e186c0d4fa65.tar.gz busybox-w32-b225e2a76bcd2b1f3f919a09dba1e186c0d4fa65.tar.bz2 busybox-w32-b225e2a76bcd2b1f3f919a09dba1e186c0d4fa65.zip |
Fixup some warnings
Diffstat (limited to 'modutils/insmod.c')
-rw-r--r-- | modutils/insmod.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modutils/insmod.c b/modutils/insmod.c index c057774b6..55a3e49be 100644 --- a/modutils/insmod.c +++ b/modutils/insmod.c | |||
@@ -300,7 +300,7 @@ extern int insmod_ng_main( int argc, char **argv); | |||
300 | #ifndef MODUTILS_MODULE_H | 300 | #ifndef MODUTILS_MODULE_H |
301 | static const int MODUTILS_MODULE_H = 1; | 301 | static const int MODUTILS_MODULE_H = 1; |
302 | 302 | ||
303 | #ident "$Id: insmod.c,v 1.123 2004/08/19 19:17:30 andersen Exp $" | 303 | #ident "$Id: insmod.c,v 1.124 2004/08/28 00:43:06 andersen Exp $" |
304 | 304 | ||
305 | /*======================================================================*/ | 305 | /*======================================================================*/ |
306 | /* For sizeof() which are related to the module platform and not to the | 306 | /* For sizeof() which are related to the module platform and not to the |
@@ -458,7 +458,7 @@ int delete_module(const char *); | |||
458 | #ifndef MODUTILS_OBJ_H | 458 | #ifndef MODUTILS_OBJ_H |
459 | static const int MODUTILS_OBJ_H = 1; | 459 | static const int MODUTILS_OBJ_H = 1; |
460 | 460 | ||
461 | #ident "$Id: insmod.c,v 1.123 2004/08/19 19:17:30 andersen Exp $" | 461 | #ident "$Id: insmod.c,v 1.124 2004/08/28 00:43:06 andersen Exp $" |
462 | 462 | ||
463 | /* The relocatable object is manipulated using elfin types. */ | 463 | /* The relocatable object is manipulated using elfin types. */ |
464 | 464 | ||
@@ -1973,7 +1973,7 @@ add_symbols_from( struct obj_file *f, | |||
1973 | if (strncmp((char *)s->name, "GPLONLY_", 8) == 0) { | 1973 | if (strncmp((char *)s->name, "GPLONLY_", 8) == 0) { |
1974 | #ifdef CONFIG_FEATURE_CHECK_TAINTED_MODULE | 1974 | #ifdef CONFIG_FEATURE_CHECK_TAINTED_MODULE |
1975 | if (gpl) | 1975 | if (gpl) |
1976 | ((char *)s->name) += 8; | 1976 | s->name += 8; |
1977 | else | 1977 | else |
1978 | #endif | 1978 | #endif |
1979 | continue; | 1979 | continue; |