diff options
author | ikorihn <16367098+ikorihn@users.noreply.github.com> | 2023-10-09 03:43:09 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-08 19:43:09 +0100 |
commit | 4345d34cf2083b1cfbe9487762f077e5d3feea83 (patch) | |
tree | 770778668875618709b8f3fe6b75bcfa970399c8 | |
parent | 7ca652ce6d6582ca682f7e7beeb1ad1908087985 (diff) |
Fix build error when Automatic Mouse Layer is enabled (#22229)
-rw-r--r-- | quantum/pointing_device/pointing_device_auto_mouse.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/quantum/pointing_device/pointing_device_auto_mouse.c b/quantum/pointing_device/pointing_device_auto_mouse.c index fc3106e37e..3135b9e531 100644 --- a/quantum/pointing_device/pointing_device_auto_mouse.c +++ b/quantum/pointing_device/pointing_device_auto_mouse.c @@ -17,6 +17,7 @@ #ifdef POINTING_DEVICE_AUTO_MOUSE_ENABLE +# include <string.h> # include "pointing_device_auto_mouse.h" # include "debug.h" # include "action_util.h" |