aboutsummaryrefslogtreecommitdiff
path: root/modutils/modutils-24.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-08-02 14:26:33 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-08-02 14:26:33 +0200
commit95f7953f2c46c7b9c799250aa8dc6eb10cc5c726 (patch)
treea59020f297e319343585b41e5afae9630dc8223d /modutils/modutils-24.c
parent18e781dc02cfc293d33b02f924ef70513c2f205a (diff)
downloadbusybox-w32-95f7953f2c46c7b9c799250aa8dc6eb10cc5c726.tar.gz
busybox-w32-95f7953f2c46c7b9c799250aa8dc6eb10cc5c726.tar.bz2
busybox-w32-95f7953f2c46c7b9c799250aa8dc6eb10cc5c726.zip
do not use `a' quoting style in comments
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'modutils/modutils-24.c')
-rw-r--r--modutils/modutils-24.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modutils/modutils-24.c b/modutils/modutils-24.c
index 9ce91351d..1a30dd87c 100644
--- a/modutils/modutils-24.c
+++ b/modutils/modutils-24.c
@@ -2269,8 +2269,8 @@ static int add_symbols_from(struct obj_file *f,
2269 2269
2270#ifdef SYMBOL_PREFIX 2270#ifdef SYMBOL_PREFIX
2271 /* Prepend SYMBOL_PREFIX to the symbol's name (the 2271 /* Prepend SYMBOL_PREFIX to the symbol's name (the
2272 kernel exports `C names', but module object files 2272 kernel exports 'C names', but module object files
2273 reference `linker names'). */ 2273 reference 'linker names'). */
2274 size_t extra = sizeof SYMBOL_PREFIX; 2274 size_t extra = sizeof SYMBOL_PREFIX;
2275 size_t name_size = strlen(name) + extra; 2275 size_t name_size = strlen(name) + extra;
2276 if (name_size > name_alloced_size) { 2276 if (name_size > name_alloced_size) {