summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--includes/SpinLock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/SpinLock.h b/includes/SpinLock.h
index 86840308c5..76fcd4e00e 100644
--- a/includes/SpinLock.h
+++ b/includes/SpinLock.h
@@ -22,7 +22,7 @@
#if defined(PROF_SPIN)
typedef struct SpinLock_
{
- StgWord32 lock;
+ StgWord lock;
StgWord64 spin; // DEBUG version counts how much it spins
} SpinLock;
#else