From 155f5e2f24c24f5b5ffbf13fcea5cf1a355ec372 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 10 Oct 2020 12:31:29 +0200 Subject: [WIP] Simplify reader and writer flags [WIP] Testing? --- tools/serd-pipe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/serd-pipe.c') diff --git a/tools/serd-pipe.c b/tools/serd-pipe.c index 8bf26f2a..080fc9a1 100644 --- a/tools/serd-pipe.c +++ b/tools/serd-pipe.c @@ -141,7 +141,7 @@ main(int argc, char** argv) if (opt == 'a') { writer_flags |= SERD_WRITE_ASCII; } else if (opt == 'f') { - writer_flags |= (SERD_WRITE_UNQUALIFIED | SERD_WRITE_UNRESOLVED); + writer_flags |= (SERD_WRITE_EXPANDED | SERD_WRITE_VERBATIM); } else if (opt == 'h') { return print_usage(prog, false); } else if (opt == 'l') { -- cgit v1.2.1