From dc2afbea4d8a117623d21f552b727c1833f7e213 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 26 Dec 2017 20:15:58 -0500 Subject: Don't force ASCII for NQuads --- src/serdi.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src') diff --git a/src/serdi.c b/src/serdi.c index e1a53845..9624e29c 100644 --- a/src/serdi.c +++ b/src/serdi.c @@ -234,8 +234,7 @@ main(int argc, char** argv) SerdEnv* env = serd_env_new(&base); int output_style = 0; - if (output_syntax == SERD_NTRIPLES || output_syntax == SERD_NQUADS || - ascii) { + if (output_syntax == SERD_NTRIPLES || ascii) { output_style |= SERD_STYLE_ASCII; } else if (output_syntax == SERD_TURTLE) { output_style |= SERD_STYLE_ABBREVIATED; -- cgit v1.2.1