Switch missing default handler in OS detection docs (#26064)

Switch was missing default handler: control reaches end of non-void function

This warning gets treated as an error on Github Actions
This commit is contained in:
Peter Cock 2026-03-13 22:59:54 +00:00 committed by GitHub
parent 9fd72b352b
commit afb5335bf3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -136,6 +136,8 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
print_stored_setups();
}
return false;
default:
return true; // Process all other keycodes normally
}
}
```