aboutsummaryrefslogtreecommitdiff
path: root/modutils/lsmod.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2019-05-14 17:26:47 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2019-05-14 17:26:47 +0200
commit8c317f03f6d4d89fd7b0cc1e6eaf515040b8e701 (patch)
tree4bf2806134b65a8734ab6521fb2a1ce243631b42 /modutils/lsmod.c
parent0545bfa841540a0d7d7e2953bc205eda64144c2e (diff)
downloadbusybox-w32-8c317f03f6d4d89fd7b0cc1e6eaf515040b8e701.tar.gz
busybox-w32-8c317f03f6d4d89fd7b0cc1e6eaf515040b8e701.tar.bz2
busybox-w32-8c317f03f6d4d89fd7b0cc1e6eaf515040b8e701.zip
style fix, no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'modutils/lsmod.c')
-rw-r--r--modutils/lsmod.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/modutils/lsmod.c b/modutils/lsmod.c
index 694205fda..39dc8e6b7 100644
--- a/modutils/lsmod.c
+++ b/modutils/lsmod.c
@@ -66,7 +66,10 @@ static void check_tainted(void)
66 } 66 }
67} 67}
68#else 68#else
69static void check_tainted(void) { putchar('\n'); } 69static ALWAYS_INLINE void check_tainted(void)
70{
71 putchar('\n');
72}
70#endif 73#endif
71 74
72int lsmod_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; 75int lsmod_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;