aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/state.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/state.h')
-rw-r--r--src/nvim/state.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/state.h b/src/nvim/state.h
index 8027514148..b93d57d035 100644
--- a/src/nvim/state.h
+++ b/src/nvim/state.h
@@ -5,8 +5,8 @@
typedef struct vim_state VimState;
-typedef int(*state_check_callback)(VimState *state);
-typedef int(*state_execute_callback)(VimState *state, int key);
+typedef int (*state_check_callback)(VimState *state);
+typedef int (*state_execute_callback)(VimState *state, int key);
struct vim_state {
state_check_callback check;