about summary refs log tree commit diff
path: root/ports/sysdeps/hppa/nptl/pthread_spin_init.c
diff options
context:
space:
mode:
Diffstat (limited to 'ports/sysdeps/hppa/nptl/pthread_spin_init.c')
-rw-r--r--ports/sysdeps/hppa/nptl/pthread_spin_init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/sysdeps/hppa/nptl/pthread_spin_init.c b/ports/sysdeps/hppa/nptl/pthread_spin_init.c
index df3dc4c2ef..c46e00cc89 100644
--- a/ports/sysdeps/hppa/nptl/pthread_spin_init.c
+++ b/ports/sysdeps/hppa/nptl/pthread_spin_init.c
@@ -23,6 +23,6 @@ pthread_spin_init (pthread_spinlock_t *lock, int pshared)
   int tmp = 0;
   /* This should be a memory barrier to newer compilers */
   __asm__ __volatile__ ("stw,ma %1,0(%0)"
-                        : : "r" (lock), "r" (tmp) : "memory");           
+                        : : "r" (lock), "r" (tmp) : "memory");
   return 0;
 }