more minor mistakes
authorJudah Caruso <judah@tuta.io>
Fri, 15 Dec 2023 02:18:18 +0000 (19:18 -0700)
committerJudah Caruso <judah@tuta.io>
Fri, 15 Dec 2023 02:18:18 +0000 (19:18 -0700)
interpreter/include/ovm_debug.h

index 3a2e98c404427f06743cf6ccc4082d1c94e014ff..9628b32159fd4c5f2a24ee0caae2685d572d6740 100644 (file)
@@ -10,7 +10,7 @@
     typedef sem_t semaphore;
 
     static inline semaphore* semaphore_create(const char *name, int oflag, mode_t mode, unsigned int value) {
-        return sem_open(name, flags, mode, value);
+        return sem_open(name, oflag, mode, value);
     }
 
     static inline void semaphore_wait(semaphore* sem) {