forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 15
Closed
Labels
-Wempty-body[BUG] linuxA bug that should be fixed in the mainline kernel.A bug that should be fixed in the mainline kernel.[FIXED][LINUX] 4.20This bug was fixed in Linux 4.20This bug was fixed in Linux 4.20
Description
CC drivers/atm/eni.o
drivers/atm/eni.c:244:48: warning: for loop has empty body [-Wempty-body]
for (order = 0; (1 << order) < *size; order++);
^
drivers/atm/eni.c:244:48: note: put the semicolon on a separate line to silence this
warning
This can probably be replaced with a while
loop, or the warning disabled unless W=1
or something in KBUILD. Probably CONFIG_ATM_DRIVERS=y
.
Metadata
Metadata
Assignees
Labels
-Wempty-body[BUG] linuxA bug that should be fixed in the mainline kernel.A bug that should be fixed in the mainline kernel.[FIXED][LINUX] 4.20This bug was fixed in Linux 4.20This bug was fixed in Linux 4.20