diff --git a/gfx/drivers_context/wayland_ctx.c b/gfx/drivers_context/wayland_ctx.c index e3d697acc4..5c7028cf20 100644 --- a/gfx/drivers_context/wayland_ctx.c +++ b/gfx/drivers_context/wayland_ctx.c @@ -21,7 +21,6 @@ #include "../drivers/gl_common.h" #include -#include #include #include diff --git a/libretro-db/rmsgpack_dom.h b/libretro-db/rmsgpack_dom.h index 733def69bf..30a7d01fe2 100644 --- a/libretro-db/rmsgpack_dom.h +++ b/libretro-db/rmsgpack_dom.h @@ -24,20 +24,20 @@ struct rmsgpack_dom_value { union { uint64_t uint_; int64_t int_; - struct string_t { + struct { uint32_t len; char * buff; } string; - struct binary_t { + struct { uint32_t len; char * buff; } binary; int bool_; - struct map_t { + struct { uint32_t len; struct rmsgpack_dom_pair * items; } map; - struct array_t { + struct { uint32_t len; struct rmsgpack_dom_value * items; } array;