1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-09 22:24:09 +03:00

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);