mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Get rid of warning
This commit is contained in:
parent
84974c7e5c
commit
29e4b8e2c1
1 changed files with 1 additions and 1 deletions
|
@ -321,7 +321,7 @@ struct http_connection_t *net_http_connection_new(const char *url,
|
|||
strlcat(new_domain, "/", sizeof(new_domain));
|
||||
strlcat(new_domain, strchr(uri, (char) '/')+sizeof(char), sizeof(new_domain));
|
||||
}
|
||||
strlcpy(conn->scan, new_domain, sizeof(new_domain));
|
||||
strlcpy(conn->scan, new_domain, strlen(conn->scan) + 1);
|
||||
}
|
||||
}
|
||||
/* end of port-fetching from url */
|
||||
|
|
Loading…
Add table
Reference in a new issue