From 2fdd4444ff20218b0aa3e7f4533041d930d5ef0e Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 14 May 2018 00:29:20 +0200 Subject: [PATCH] Get rid of unintentional typedef redefinition (C11 feature) --- menu/menu_driver.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/menu/menu_driver.h b/menu/menu_driver.h index 2a5189b012..c345f8615b 100644 --- a/menu/menu_driver.h +++ b/menu/menu_driver.h @@ -406,7 +406,7 @@ typedef struct } scratchpad; } menu_handle_t; -typedef struct menu_display_ctx_draw +struct menu_display_ctx_draw { float x; float y; @@ -429,7 +429,7 @@ typedef struct menu_display_ctx_draw } pipeline; float rotation; float scale_factor; -} menu_display_ctx_draw_t; +}; typedef struct menu_display_ctx_rotate_draw {