mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-20 20:36:01 +01:00
fix a -Wparentheses
This commit is contained in:
parent
d3eb2f6e69
commit
466c50d3a0
1 changed files with 1 additions and 1 deletions
|
|
@ -333,7 +333,7 @@ AddVideoDialog::file_name (bool &local_file)
|
|||
char *ue = curl_easy_unescape(curl, uri.c_str(), uri.length(), &plen);
|
||||
#ifdef PLATFORM_WINDOWS
|
||||
char *tmp;
|
||||
while (tmp = strchr(ue, '/')) *tmp = '\\';
|
||||
while ((tmp = strchr(ue, '/'))) *tmp = '\\';
|
||||
#endif
|
||||
std::string path = video_get_docroot(Config) + ue;
|
||||
if (!::access(path.c_str(), R_OK)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue