Get rid of wrong double ';;'

This commit is contained in:
twinaphex 2020-01-30 16:53:20 +01:00
parent 74cd84399f
commit 7f4139c427
3 changed files with 3 additions and 3 deletions

View File

@ -127,7 +127,7 @@ int exec_cia(const char* path, const char** args){
return -1;
}
else if(S_ISDIR(sBuff.st_mode)){
errno = EINVAL;;
errno = EINVAL;
return -1;
}

View File

@ -519,7 +519,7 @@ void ozone_draw_fullscreen_thumbnails(
else
{
thumbnail_box_width = view_width - (thumbnail_margin * 2);
left_thumbnail_x = thumbnail_margin;;
left_thumbnail_x = thumbnail_margin;
right_thumbnail_x = left_thumbnail_x;
}

View File

@ -428,7 +428,7 @@ netplay_t *netplay_new(void *direct_host, const char *server, uint16_t port,
netplay->tcp_port = port;
netplay->cbs = *cb;
netplay->is_server = (direct_host == NULL && server == NULL);
netplay->is_connected = false;;
netplay->is_connected = false;
netplay->nat_traversal = netplay->is_server ? nat_traversal : false;
netplay->stateless_mode = stateless_mode;
netplay->check_frames = check_frames;