summaryrefslogtreecommitdiffstats
path: root/uemis-downloader.c
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2014-05-07 11:15:39 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-05-07 11:15:39 -0700
commit704c2cb22585673f1162f7a437dbc28abcb3309c (patch)
tree1a48d4e9ceaa2af7de040e497bca99466a5a81c2 /uemis-downloader.c
parenta0a25554a72020aad4df7d568a8686c358724d5f (diff)
downloadsubsurface-704c2cb22585673f1162f7a437dbc28abcb3309c.tar.gz
Fix stupid typo
Yeah, that doesn't work. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'uemis-downloader.c')
-rw-r--r--uemis-downloader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/uemis-downloader.c b/uemis-downloader.c
index be9a3c425..c1980de4c 100644
--- a/uemis-downloader.c
+++ b/uemis-downloader.c
@@ -180,7 +180,7 @@ static char *build_filename(const char *path, const char *name)
int len = strlen(path) + strlen(name) + 2;
char *buf = malloc(len);
#if WIN32
- snprintf(buf, len, "%s\%s", path, name);
+ snprintf(buf, len, "%s\\%s", path, name);
#else
snprintf(buf, len, "%s/%s", path, name);
#endif