summaryrefslogtreecommitdiff
path: root/tests/test-11.c
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2018-01-25 02:23:02 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2018-01-25 02:23:02 +0100
commite71f7804caa6352ba4cec3aaf04800c9a3f88d48 (patch)
treedd9659b8939f705b541199cea567552fd5c5b0a4 /tests/test-11.c
parent034e4e904a5e16356fab5b8943b91b82b7437dbb (diff)
Fix spurious whitespaces
Diffstat (limited to 'tests/test-11.c')
-rw-r--r--tests/test-11.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-11.c b/tests/test-11.c
index de779a4..f5a5aa0 100644
--- a/tests/test-11.c
+++ b/tests/test-11.c
@@ -109,11 +109,11 @@ main (int argc, char **argv)
/* Read lock it. */
err = pthread_rwlock_tryrdlock (&lock);
assert (err == 0);
-
+
/* Try to write lock it. It should fail with EBUSY. */
err = pthread_rwlock_trywrlock (&lock);
assert (err == EBUSY);
-
+
/* Drop the read lock. */
err = pthread_rwlock_unlock (&lock);
assert (err == 0);