diff options
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); |