{\r
/* Get the length of the pipe data, and create a new buffer to hold it */\r
uint16_t BufferLength = Pipe_BytesInPipe();\r
- uint8_t Buffer[BufferLength];\r
+ uint8_t Buffer[BufferLength];\r
\r
/* Read in the pipe data to the temporary buffer */\r
Pipe_Read_Stream_LE(Buffer, BufferLength);\r
/* Check if a packet has been received */\r
if (Pipe_IsINReceived())\r
{\r
- /* Discard the event notification */\r
+ /* Discard the unused event notification */\r
Pipe_ClearIN();\r
}\r
\r