diff options
Diffstat (limited to 'Demos/Device/Keyboard/Keyboard.c')
-rw-r--r-- | Demos/Device/Keyboard/Keyboard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Demos/Device/Keyboard/Keyboard.c b/Demos/Device/Keyboard/Keyboard.c index 8c4157a56..f0e0186d0 100644 --- a/Demos/Device/Keyboard/Keyboard.c +++ b/Demos/Device/Keyboard/Keyboard.c @@ -41,11 +41,11 @@ TASK_LIST
{
#if !defined(INTERRUPT_CONTROL_ENDPOINT)
- { Task: USB_USBTask , TaskStatus: TASK_STOP },
+ { .Task = USB_USBTask , .TaskStatus = TASK_STOP },
#endif
#if !defined(INTERRUPT_DATA_ENDPOINT)
- { Task: USB_Keyboard_Report , TaskStatus: TASK_STOP },
+ { .Task = USB_Keyboard_Report , .TaskStatus = TASK_STOP },
#endif
};
|