diff options
Diffstat (limited to 'miscutils/inotifyd.c')
-rw-r--r-- | miscutils/inotifyd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/inotifyd.c b/miscutils/inotifyd.c index 0c4b06784..216a69654 100644 --- a/miscutils/inotifyd.c +++ b/miscutils/inotifyd.c @@ -103,7 +103,7 @@ int inotifyd_main(int argc UNUSED_PARAM, char **argv) if (bb_got_signal) break; n = poll(&pfd, 1, -1); - /* Signal interrupted us? */ + // Signal interrupted us? if (n < 0 && errno == EINTR) goto again; // Under Linux, above if() is not necessary. |