diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-08-20 06:02:29 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-08-20 06:08:07 +0200 |
commit | d9dc87d8409ddf8361b7fcb311ae97088ed1d984 (patch) | |
tree | c63be2cf2a7d978dd5b30b3a404d9442acefdff7 /src/fastd.h | |
parent | 3fd947a2d13a3f110f7c558b1d294dddfd2d25e0 (diff) | |
download | fastd-d9dc87d8409ddf8361b7fcb311ae97088ed1d984.tar fastd-d9dc87d8409ddf8361b7fcb311ae97088ed1d984.zip |
Fix lots of -Wextra warnings
Everything clang and GCC warn about, except GCC's missing-field-initializers
which are just stupid as they don't allow {} syntax to zero a field.
Diffstat (limited to 'src/fastd.h')
-rw-r--r-- | src/fastd.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/fastd.h b/src/fastd.h index 014bb2f..723b1e7 100644 --- a/src/fastd.h +++ b/src/fastd.h @@ -493,4 +493,8 @@ static inline size_t max_size_t(size_t a, size_t b) { return (a > b) ? a : b; } +static inline size_t min_size_t(size_t a, size_t b) { + return (a < b) ? a : b; +} + #endif /* _FASTD_FASTD_H_ */ |