Skip to content

Commit 7665a47

Browse files
pavelmachekChristian Brauner
authored andcommitted
signal: fix typo in dequeue_synchronous_signal()
s/postive/positive/ Signed-off-by: Pavel Machek (CIP) <[email protected]> Link: https://lore.kernel.org/r/20200724090531.GA14409@amd [[email protected]: tweak commit message] Signed-off-by: Christian Brauner <[email protected]>
1 parent 92ed301 commit 7665a47

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)