mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
Remove unnecessary semicolon
This commit is contained in:
parent
67480fc5fd
commit
558c8ce0f0
1 changed files with 1 additions and 1 deletions
|
@ -320,7 +320,7 @@ os_event_t
|
||||||
os_event_create(void)
|
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);
|
os_event_create(event);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue