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) <pavel@denx.de> Link: https://lore.kernel.org/r/20200724090531.GA14409@amd [christian.brauner@ubuntu.com: tweak commit message] Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
1 parent 92ed301 commit 7665a47

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)