diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2023-01-13 13:32:29 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2023-01-13 13:32:29 +0100 |
commit | f8276812e6bf3aaefe22cdf9135b06e344298273 (patch) | |
tree | 144952ccb353a09a7fe792bae9656470cf6099d8 /proto/mrt | |
parent | 7fb23041a52d01754c53ba963e2282e524813364 (diff) |
Minor cleanups
Diffstat (limited to 'proto/mrt')
-rw-r--r-- | proto/mrt/mrt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/proto/mrt/mrt.c b/proto/mrt/mrt.c index 321c6395..d1c334e1 100644 --- a/proto/mrt/mrt.c +++ b/proto/mrt/mrt.c @@ -113,13 +113,13 @@ mrt_buffer_flush(buffer *b) } #define MRT_DEFINE_TYPE(S, T) \ - static inline void mrt_put_##S##_(buffer *b, T x) \ + static inline void UNUSED mrt_put_##S##_(buffer *b, T x) \ { \ put_##S(b->pos, x); \ b->pos += sizeof(T); \ } \ \ - static inline void mrt_put_##S(buffer *b, T x) \ + static inline void UNUSED mrt_put_##S(buffer *b, T x) \ { \ mrt_buffer_need(b, sizeof(T)); \ put_##S(b->pos, x); \ |