Assorted warning fixes

This commit is contained in:
Jasmine Iwanek
2025-01-26 15:15:53 -05:00
parent a5bf0dc9c8
commit 5f273265ae
136 changed files with 1374 additions and 1291 deletions

View File

@@ -133,12 +133,12 @@ bswap64s(uint64_t *s)
return endian##_bswap(v, size); \
} \
\
static __inline void endian##size##_to_cpus(type *p) \
static __inline void endian##size##_to_cpus(UNUSED(type *p)) \
{ \
endian##_bswaps(p, size) \
} \
\
static __inline void cpu_to_##endian##size##s(type *p) \
static __inline void cpu_to_##endian##size##s(UNUSED(type *p)) \
{ \
endian##_bswaps(p, size) \
} \