summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2024-09-19 20:06:25 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2024-09-19 20:09:20 -0600
commita9a35f9d3b19724640fcb0b0cec057f95c8c6328 (patch)
treeb59f3e151aaadcd36647278cd782310553b0b078 /main.c
parent75fcb1ef5db5a2d6daaf02a0a02de037f5eaedff (diff)
fixes
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index 1b1558e..30a6dfc 100644
--- a/main.c
+++ b/main.c
@@ -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);