mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
Merge pull request #208 from Cona19/10.1-remove-unnecessary-semicolon
Remove unnecessary semicolon
This commit is contained in:
commit
a8c2f68fb8
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue