Skip to content

Commit 44e29e6

Browse files
committed
watch-queue: remove spurious double semicolon
Sedat Dilek noticed that I had an extraneous semicolon at the end of a line in the previous patch. It's harmless, but unintentional, and while compilers just treat it as an extra empty statement, for all I know some other tooling might warn about it. So clean it up before other people notice too ;) Fixes: 353f798 ("watchqueue: make sure to serialize 'wqueue->defunct' properly") Reported-by: Sedat Dilek <sedat.dilek@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Reported-by: Sedat Dilek <sedat.dilek@gmail.com>
1 parent 353f798 commit 44e29e6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

kernel/watch_queue.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ void __post_watch_notification(struct watch_list *wlist,
227227

228228
if (lock_wqueue(wqueue)) {
229229
post_one_notification(wqueue, n);
230-
unlock_wqueue(wqueue);;
230+
unlock_wqueue(wqueue);
231231
}
232232
}
233233

0 commit comments

Comments
 (0)