summaryrefslogtreecommitdiffhomepage
path: root/compat/shm.h
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2019-08-01 14:07:00 +0200
committerStanislaw Halik <sthalik@misaki.pl>2019-08-01 14:07:00 +0200
commit7d898e638abad8267420f8c0d827d21f716b8977 (patch)
tree897a31950ba0a345f05162e4e8616f26e1b69446 /compat/shm.h
parentb930dd608bf95ecc3f89007313ba8ab8b1935ee5 (diff)
fix clang warnings
Diffstat (limited to 'compat/shm.h')
-rw-r--r--compat/shm.h3
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: