From c7b3c2c600ec1b71f78422b4b4de4d204dbe1910 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Mon, 11 May 2009 00:03:35 +0000 Subject: Use enum, rather than magic value svn path=/trunk/tools/ttf2f/; revision=7461 --- src/cli.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/cli.c b/src/cli.c index d1b167f..631077f 100644 --- a/src/cli.c +++ b/src/cli.c @@ -97,7 +97,8 @@ int main(int argc, char **argv) if ((err = outlines_write(argv[2], argv[2], &ctx, progress)) != TTF2F_RESULT_OK) goto error_out; - if ((err = encoding_write(argv[2], argv[2], &ctx, 0, progress)) != + if ((err = encoding_write(argv[2], argv[2], &ctx, + ENCODING_TYPE_NORMAL, progress)) != TTF2F_RESULT_OK) goto error_out; error_out: -- cgit v1.2.3