diff options
Diffstat (limited to 'users/konstantin')
| -rw-r--r-- | users/konstantin/konstantin.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/users/konstantin/konstantin.h b/users/konstantin/konstantin.h index 48bd26cd5..989854c2e 100644 --- a/users/konstantin/konstantin.h +++ b/users/konstantin/konstantin.h | |||
| @@ -35,11 +35,11 @@ | |||
| 35 | 35 | ||
| 36 | #ifdef SEND_STRING_CLEAN | 36 | #ifdef SEND_STRING_CLEAN |
| 37 | #undef SEND_STRING | 37 | #undef SEND_STRING |
| 38 | #define SEND_STRING(...) { \ | 38 | #define SEND_STRING(string) { \ |
| 39 | uint8_t ss_mods = get_mods(); \ | 39 | uint8_t ss_mods = get_mods(); \ |
| 40 | clear_mods(); \ | 40 | clear_mods(); \ |
| 41 | send_string_P(PSTR(__VA_ARGS__)); \ | 41 | send_string_P(PSTR(string)); \ |
| 42 | set_mods(ss_mods); \ | 42 | set_mods(ss_mods); \ |
| 43 | } | 43 | } |
| 44 | #endif | 44 | #endif |
| 45 | 45 | ||
