Skip to content
Snippets Groups Projects
Commit 668d2e59 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix apparent missing return statement in get_win_filename()

Found by MSVC warning
parent bd56646d
No related branches found
No related tags found
1 merge request!455Update branch with changes from master
......@@ -1117,6 +1117,8 @@ get_win_filename(char *fn, int fnlen, int type, int shared)
strncat(fn, "syncterm.ssh", fnlen - strlen(fn) - 1);
break;
}
return fn;
}
#else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment