diff options
| author | Stefan Boberg <[email protected]> | 2021-09-16 15:46:43 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-16 15:47:56 +0200 |
| commit | c3a7f98683d8c017f6a0dc3e884f2397670563e6 (patch) | |
| tree | 37bc2bc7255f913bd52fc9ed3103138e8c594bfc /zencore/zencore.cpp | |
| parent | Improved package serialization to allow round tripping (diff) | |
| download | zen-c3a7f98683d8c017f6a0dc3e884f2397670563e6.tar.xz zen-c3a7f98683d8c017f6a0dc3e884f2397670563e6.zip | |
clang-format fixes
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 c53fd218f..f179880e4 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> @@ -44,7 +44,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); |