aboutsummaryrefslogtreecommitdiff
path: root/modutils
diff options
context:
space:
mode:
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>2005-03-30 16:36:40 +0000
committerPeter Kjellerstedt <peter.kjellerstedt@axis.com>2005-03-30 16:36:40 +0000
commit540769d5663f52f5d9e04b85dd540deb5621946d (patch)
tree85214b08ae0453120576f0e05d7f02d9eda79c72 /modutils
parent354b527e03aaf994b293cd1e31525089bd95b846 (diff)
downloadbusybox-540769d5663f52f5d9e04b85dd540deb5621946d.tar.gz
Corrected the list of section names in add_ksymoops_symbols() so
that the bss and sbss sections can be correctly identified.
Diffstat (limited to 'modutils')
-rw-r--r--modutils/insmod.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modutils/insmod.c b/modutils/insmod.c
index c0f60fdb5..dfb8a765e 100644
--- a/modutils/insmod.c
+++ b/modutils/insmod.c
@@ -3453,8 +3453,8 @@ add_ksymoops_symbols(struct obj_file *f, const char *filename,
".text",
".rodata",
".data",
- ".bss"
- ".sbss"
+ ".bss",
+ ".sbss"
};
if (realpath(filename, real)) {