summaryrefslogtreecommitdiff
path: root/nuttx/sched/sig_dispatch.c
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-04-12 13:28:22 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-04-12 13:28:22 -0600
commit74a4eb6d1612d63958e14a240cc526c9be8041e0 (patch)
tree90ff9923b46383e6ea4e5ec0f162608fda1820fa /nuttx/sched/sig_dispatch.c
parent5d99549aca261d40abf3e0d7180c2bddca3522b3 (diff)
downloadpx4-nuttx-74a4eb6d1612d63958e14a240cc526c9be8041e0.tar.gz
px4-nuttx-74a4eb6d1612d63958e14a240cc526c9be8041e0.tar.bz2
px4-nuttx-74a4eb6d1612d63958e14a240cc526c9be8041e0.zip
Make sure that there is one space after for
Diffstat (limited to 'nuttx/sched/sig_dispatch.c')
-rw-r--r--nuttx/sched/sig_dispatch.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/sched/sig_dispatch.c b/nuttx/sched/sig_dispatch.c
index 82c891b46..e59d0e73c 100644
--- a/nuttx/sched/sig_dispatch.c
+++ b/nuttx/sched/sig_dispatch.c
@@ -220,9 +220,9 @@ static FAR sigpendq_t *sig_findpendingsignal(FAR struct task_group_s *group,
/* Seach the list for a sigpendion on this signal */
- for(sigpend = (FAR sigpendq_t*)group->sigpendingq.head;
- (sigpend && sigpend->info.si_signo != signo);
- sigpend = sigpend->flink);
+ for (sigpend = (FAR sigpendq_t*)group->sigpendingq.head;
+ (sigpend && sigpend->info.si_signo != signo);
+ sigpend = sigpend->flink);
irqrestore(saved_state);
return sigpend;