diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-09-19 20:06:25 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-09-19 20:09:20 -0600 |
commit | a9a35f9d3b19724640fcb0b0cec057f95c8c6328 (patch) | |
tree | b59f3e151aaadcd36647278cd782310553b0b078 /main.c | |
parent | 75fcb1ef5db5a2d6daaf02a0a02de037f5eaedff (diff) |
fixes
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -39,7 +39,7 @@ int main() { /* set up coroutines */ coroutine_add(usb_common_cr, NULL); - usb_keyboard_chan_t keyboard_chan; + usb_keyboard_chan_t keyboard_chan = {0}; coroutine_add(usb_keyboard_cr, &keyboard_chan); coroutine_add(hello_world_cr, &keyboard_chan); |