summaryrefslogtreecommitdiff
path: root/nuttx/sched/pthread_mutexlock.c
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-04-13 14:32:20 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-04-13 14:32:20 -0600
commit3cf6b4d6577c2f467dbb25dd0da8cdc6ad32a7b4 (patch)
tree0f3ba3c03a8e8e5e5ddd7ed6658f9aeefd233228 /nuttx/sched/pthread_mutexlock.c
parentb087a6d8732ffb869f3482c62b1b74e7b1869551 (diff)
downloadpx4-nuttx-3cf6b4d6577c2f467dbb25dd0da8cdc6ad32a7b4.tar.gz
px4-nuttx-3cf6b4d6577c2f467dbb25dd0da8cdc6ad32a7b4.tar.bz2
px4-nuttx-3cf6b4d6577c2f467dbb25dd0da8cdc6ad32a7b4.zip
More trailing whilespace removal
Diffstat (limited to 'nuttx/sched/pthread_mutexlock.c')
-rw-r--r--nuttx/sched/pthread_mutexlock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/sched/pthread_mutexlock.c b/nuttx/sched/pthread_mutexlock.c
index 7681d771a..d4e4237a5 100644
--- a/nuttx/sched/pthread_mutexlock.c
+++ b/nuttx/sched/pthread_mutexlock.c
@@ -145,7 +145,7 @@ int pthread_mutex_lock(FAR pthread_mutex_t *mutex)
if (mutex->type == PTHREAD_MUTEX_RECURSIVE)
{
/* Yes... just increment the number of locks held and return success */
-
+
mutex->nlocks++;
}
else