diff options
| author | Aldrik Ramaekers <aldrikboy@gmail.com> | 2024-03-14 17:16:22 +0100 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrikboy@gmail.com> | 2024-03-14 17:16:22 +0100 |
| commit | 28b00896a8cb94663a3d35313ee7d771d4af11e0 (patch) | |
| tree | 47ac8ff198b5ad9264263914b647ef5da620eefc /src/mutex.h | |
| parent | b7d17bdf8c0f1a4118709fbc5162463afb48b5c8 (diff) | |
use cstdint types
Diffstat (limited to 'src/mutex.h')
| -rw-r--r-- | src/mutex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mutex.h b/src/mutex.h index 323b277..31a0026 100644 --- a/src/mutex.h +++ b/src/mutex.h @@ -18,7 +18,7 @@ typedef struct t_ts_mutex typedef struct t_ts_thread { HANDLE thread; - int valid; + bool valid; } ts_thread; #elif defined(__linux__) || defined(__APPLE__) |
