aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-01-02 16:07:28 -0800
committerChristian Cunningham <cc@localhost>2022-01-02 16:07:28 -0800
commit8823cb198dff5ef086fb70da93d1134423e8198b (patch)
tree892b3d08ce83e070dce5f3b403e7fdef4e3eb00f /src/util
parent059f08cb73ef2b1631f2c89f8c524e27888f6ba5 (diff)
Fixed mutex pointer type
Diffstat (limited to 'src/util')
-rw-r--r--src/util/mutex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/mutex.h b/src/util/mutex.h
index f8178a2..283be53 100644
--- a/src/util/mutex.h
+++ b/src/util/mutex.h
@@ -6,7 +6,7 @@
#define SCHED_PID 2
struct Mutex {
- unsigned long* addr;
+ void* addr;
unsigned long pid;
} __attribute__((packed, aligned(4)));;