summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-02-11 20:24:29 +0100
committerDave Davenport <qball@gmpclient.org>2016-02-11 20:24:29 +0100
commit5da7430b1edf05ba5804f8dd85e60c0562113ff3 (patch)
tree96fe8f555c49a14d70ce42a084b86f76ba20cf17 /include
parent11c347fad8a3281d6b3c613d9c84346508a80c55 (diff)
Fix double typedef.
Diffstat (limited to 'include')
-rw-r--r--include/view-internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/view-internal.h b/include/view-internal.h
index eb7389b4..2c5e6da0 100644
--- a/include/view-internal.h
+++ b/include/view-internal.h
@@ -11,7 +11,7 @@
*/
// State of the menu.
-typedef struct RofiViewState
+struct RofiViewState
{
Mode *sw;
unsigned int menu_lines;
@@ -70,6 +70,6 @@ typedef struct RofiViewState
// Handlers.
void ( *x11_event_loop )( struct RofiViewState *state, XEvent *ev );
void ( *finalize )( struct RofiViewState *state );
-}RofiViewState;
+};
/** @} */
#endif