style fix, no code changes

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2019-05-14 17:26:47 +02:00
parent 0545bfa841
commit 8c317f03f6
6 changed files with 25 additions and 9 deletions

View File

@ -66,7 +66,10 @@ static void check_tainted(void)
}
}
#else
static void check_tainted(void) { putchar('\n'); }
static ALWAYS_INLINE void check_tainted(void)
{
putchar('\n');
}
#endif
int lsmod_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;