diff options
| author | Tomáš Chvátal <scarabeus@gentoo.org> | 2009-12-09 21:50:27 +0100 |
|---|---|---|
| committer | Tomáš Chvátal <scarabeus@gentoo.org> | 2009-12-09 21:50:27 +0100 |
| commit | 7af605d1d42b2760799e816b7b25efe90a07d269 (patch) | |
| tree | 5ed4d679d6bdaf22b74c76d229d87ffe52e74bf3 /src/base/textFile.c | |
| parent | ddcbf2fcd7bfb9af4358593f8eebaa18d04c0f96 (diff) | |
Add most parts of Timoo's windows code, or use different logic to get to the same results.
Diffstat (limited to 'src/base/textFile.c')
| -rw-r--r-- | src/base/textFile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/textFile.c b/src/base/textFile.c index d04d8e6..b1c2ad9 100644 --- a/src/base/textFile.c +++ b/src/base/textFile.c @@ -19,7 +19,7 @@ textFile_t *text_file_new(char *s) strcpy(path, s); } else { getcwd(path, STR_PATH_SIZE); - strcat(path, "/"); + strcat(path, PATH_SEPARATOR); strcat(path, s); } |