summaryrefslogtreecommitdiff
path: root/src/outlines.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-05-11 14:25:38 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-05-11 14:25:38 +0000
commit20ededd9662cec66c58f8c904a1a7ee6cb82018c (patch)
tree20793fddece7e36d6f990af61da2b422394a4a8c /src/outlines.c
parent2796f33b0935839a0bb3be5d5e2f7d10079af6d5 (diff)
downloadttf2f-20ededd9662cec66c58f8c904a1a7ee6cb82018c.tar.gz
ttf2f-20ededd9662cec66c58f8c904a1a7ee6cb82018c.tar.bz2
Use Unix paths everywhere. Unixlib will fix this for us
svn path=/trunk/tools/ttf2f/; revision=7470
Diffstat (limited to 'src/outlines.c')
-rw-r--r--src/outlines.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/outlines.c b/src/outlines.c
index dab386d..205810b 100644
--- a/src/outlines.c
+++ b/src/outlines.c
@@ -65,7 +65,7 @@ ttf2f_result outlines_write(const char *savein, const char *name,
header.chunk_data.reserved[3] = 0;
header.chunk_data.reserved[4] = 0;
- snprintf(out, 1024, "%s" DIR_SEP "Outlines", savein);
+ snprintf(out, 1024, "%s/Outlines", savein);
if ((output = fopen(out, "wb") ) == NULL)
return TTF2F_RESULT_OPEN;