summaryrefslogtreecommitdiff
path: root/lib/internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/internal.h')
-rw-r--r--lib/internal.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/internal.h b/lib/internal.h
index 388de08..c79ffd1 100644
--- a/lib/internal.h
+++ b/lib/internal.h
@@ -10,7 +10,7 @@
*/
struct _bmItem {
char *text;
-} _bmItem;
+};
/**
* Internal bmRenderApi struct.
@@ -19,7 +19,7 @@ struct _bmItem {
struct _bmRenderApi {
void (*render)(struct _bmItem **items, unsigned int nmemb);
void (*free)(void);
-} _bmRenderApi;
+};
/**
* Internal bmMenu struct that is not exposed to public.
@@ -29,6 +29,6 @@ struct _bmMenu {
struct _bmRenderApi renderApi;
struct _bmItem **items;
unsigned int itemsCount;
-} _bmMenu;
+};
/* vim: set ts=8 sw=4 tw=0 :*/