diff options
| author | Martin Ridgers <[email protected]> | 2021-09-16 17:08:01 +0200 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2021-09-16 17:08:01 +0200 |
| commit | 8da2c13a34fd6394aecaf19490d65a8a84592e3c (patch) | |
| tree | 702cb3aec8145209fb5d8e39d8bf6d1432dd1a33 /zencore/zencore.cpp | |
| parent | Another missing include (diff) | |
| parent | Compact binary package caching support (#9) (diff) | |
| download | zen-8da2c13a34fd6394aecaf19490d65a8a84592e3c.tar.xz zen-8da2c13a34fd6394aecaf19490d65a8a84592e3c.zip | |
Merge main into linux-mac
Diffstat (limited to 'zencore/zencore.cpp')
| -rw-r--r-- | zencore/zencore.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/zencore/zencore.cpp b/zencore/zencore.cpp index 56bdd2ae8..f9b19ba9d 100644 --- a/zencore/zencore.cpp +++ b/zencore/zencore.cpp @@ -3,11 +3,11 @@ #include <zencore/zencore.h> #if ZEN_PLATFORM_WINDOWS -#include <zencore/windows.h> +# include <zencore/windows.h> #endif #if ZEN_PLATFORM_LINUX -#include <pthread.h> +# include <pthread.h> #endif #include <zencore/blake3.h> @@ -46,7 +46,7 @@ IsPointerToStack(const void* ptr) pthread_attr_t attr; pthread_getattr_np(self, &attr); - void* low; + void* low; size_t size; pthread_attr_getstack(&attr, &low, &size); |