summaryrefslogtreecommitdiff
path: root/toxcore/state.h
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-09-26 00:15:52 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-09-26 12:36:06 +0000
commitc7365b14f31926b6fd95e0efe9e8fefbbf265d24 (patch)
tree582eb484d82023b56fa3666842c32d379786905a /toxcore/state.h
parenta94d032586ff80a9cd25023281544bb4f3e945e9 (diff)
Remove a function-like macro and replace it with a function.
No use making this a macro. LTO will inline this anyway, if we care about performance. Generally, we avoid function-like macros that can be functions.
Diffstat (limited to 'toxcore/state.h')
-rw-r--r--toxcore/state.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/toxcore/state.h b/toxcore/state.h
index 154478bf..2d1f62c3 100644
--- a/toxcore/state.h
+++ b/toxcore/state.h
@@ -39,7 +39,7 @@ uint8_t *state_write_section_header(uint8_t *data, uint16_t cookie_type, uint32_
39// Utilities for state data serialisation. 39// Utilities for state data serialisation.
40 40
41uint16_t lendian_to_host16(uint16_t lendian); 41uint16_t lendian_to_host16(uint16_t lendian);
42#define host_tolendian16(x) lendian_to_host16(x) 42uint16_t host_tolendian16(uint16_t host);
43 43
44void host_to_lendian32(uint8_t *dest, uint32_t num); 44void host_to_lendian32(uint8_t *dest, uint32_t num);
45void lendian_to_host32(uint32_t *dest, const uint8_t *lendian); 45void lendian_to_host32(uint32_t *dest, const uint8_t *lendian);