projects
/
scilab.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
Fix Windows compilation after https://codereview.scilab.org/#/c/13227/
[scilab.git]
/
scilab
/
modules
/
windows_tools
/
src
/
c
/
scilab_windows
/
ConvertSlash.c
diff --git
a/scilab/modules/windows_tools/src/c/scilab_windows/ConvertSlash.c
b/scilab/modules/windows_tools/src/c/scilab_windows/ConvertSlash.c
index
916c4fd
..
c1c5145
100644
(file)
--- a/
scilab/modules/windows_tools/src/c/scilab_windows/ConvertSlash.c
+++ b/
scilab/modules/windows_tools/src/c/scilab_windows/ConvertSlash.c
@@
-37,9
+37,9
@@
static BOOL convertSlash(char *path_in, char *path_out, BOOL slashToAntislash)
int i = 0;
int len_path_out = 0;
strcpy(path_out, path_in);
- len_path_out = (int)strlen(path_out)
+ len_path_out = (int)strlen(path_out);
- for (i = 0; i < len_path_out; i++)
+ for (i = 0; i < len_path_out; i++)
{
if ( slashToAntislash )
{