Skip to content

Commit 0ae3495

Browse files
committed
Merge tag 'for-linus-2020-08-01' of git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux
Pull thread fix from Christian Brauner: "A simple spelling fix for dequeue_synchronous_signal()" * tag 'for-linus-2020-08-01' of git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux: signal: fix typo in dequeue_synchronous_signal()
2 parents bf121a0 + 7665a47 commit 0ae3495

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/signal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -719,7 +719,7 @@ static int dequeue_synchronous_signal(kernel_siginfo_t *info)
719719
* Return the first synchronous signal in the queue.
720720
*/
721721
list_for_each_entry(q, &pending->list, list) {
722-
/* Synchronous signals have a postive si_code */
722+
/* Synchronous signals have a positive si_code */
723723
if ((q->info.si_code > SI_USER) &&
724724
(sigmask(q->info.si_signo) & SYNCHRONOUS_MASK)) {
725725
sync = q;

0 commit comments

Comments
 (0)