Remove unnecessary semicolon

This commit is contained in:
Hyeonseok Oh 2016-08-01 12:13:14 +09:00
parent 67480fc5fd
commit 558c8ce0f0

View file

@ -320,7 +320,7 @@ os_event_t
os_event_create(void)
/*==================*/
{
os_event_t event = static_cast<os_event_t>(ut_malloc(sizeof(*event)));;
os_event_t event = static_cast<os_event_t>(ut_malloc(sizeof(*event)));
os_event_create(event);