diff options
Diffstat (limited to 'compat/shm.h')
-rw-r--r-- | compat/shm.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compat/shm.h b/compat/shm.h index ece693ea..d1363219 100644 --- a/compat/shm.h +++ b/compat/shm.h @@ -28,7 +28,8 @@ class OTR_COMPAT_EXPORT shm_wrapper final #if defined(_WIN32) HANDLE mutex, mapped_file; #else - int fd, size; + int fd; + unsigned size; #endif public: |