diff options
author | Ryan <fauxpark@gmail.com> | 2023-01-21 03:21:17 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-20 16:21:17 +0000 |
commit | cf935d97ae479e7a1e1f2f2f248b93e52e4cc69e (patch) | |
tree | cb7dc41b774171ce7036f963941ce801e868d8cd /keyboards/dz60/keymaps | |
parent | 0f77ae6a20652c11bc252548bd28fd64f5fb6b97 (diff) |
Fix functions with empty params (#19647)
* Fix functions with empty params
* Found a bunch more
Diffstat (limited to 'keyboards/dz60/keymaps')
-rw-r--r-- | keyboards/dz60/keymaps/marianas/relativity.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/dz60/keymaps/marianas/relativity.c b/keyboards/dz60/keymaps/marianas/relativity.c index d2b9393400..f498b86742 100644 --- a/keyboards/dz60/keymaps/marianas/relativity.c +++ b/keyboards/dz60/keymaps/marianas/relativity.c @@ -24,7 +24,7 @@ bool tempOff = false; -void initStringData() +void initStringData(void) { if (macroTaps == 0) { @@ -382,7 +382,7 @@ bool processSmartMacroTap(uint16_t kc) bool shifted = false; -bool isShifted() +bool isShifted(void) { return shifted; } |