diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2004-08-28 00:43:07 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2004-08-28 00:43:07 +0000 |
commit | b35759bc8c090a0a6c2f7006fdf4b77cdec9c3ae (patch) | |
tree | cb40909520a92fd5c133d831a4d34865a15ae6f0 /modutils/insmod.c | |
parent | b1cb217b5d4903e8230d4e560850482872ea1e79 (diff) | |
download | busybox-w32-b35759bc8c090a0a6c2f7006fdf4b77cdec9c3ae.tar.gz busybox-w32-b35759bc8c090a0a6c2f7006fdf4b77cdec9c3ae.tar.bz2 busybox-w32-b35759bc8c090a0a6c2f7006fdf4b77cdec9c3ae.zip |
Fixup some warnings
git-svn-id: svn://busybox.net/trunk/busybox@9180 69ca8d6d-28ef-0310-b511-8ec308f3f277
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; |