summaryrefslogtreecommitdiff
path: root/src/udev/collect
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2015-09-09 14:33:32 +0200
committerLennart Poettering <lennart@poettering.net>2015-09-09 14:59:53 +0200
commit57255510c95ca3369d241502f26d7bbd8fac30a6 (patch)
tree0f08bcb8422da1cd42e6de2cf8d61f6db711956a /src/udev/collect
parent1f6b411372076426c0faf0bb350437fb4d82931f (diff)
tree-wide: replace while(1) by for(;;) everywhere
Another Coccinelle script.
Diffstat (limited to 'src/udev/collect')
-rw-r--r--src/udev/collect/collect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/udev/collect/collect.c b/src/udev/collect/collect.c
index 6cf41c67bb..b3a1f0bca1 100644
--- a/src/udev/collect/collect.c
+++ b/src/udev/collect/collect.c
@@ -364,7 +364,7 @@ int main(int argc, char **argv)
goto exit;
}
- while (1) {
+ for (;;) {
int option;
option = getopt_long(argc, argv, "ardh", options, NULL);