From c65f5f12bbde0290b79d8bcfe7be599d6c1de2fb Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 13 May 2012 18:42:31 +0000 Subject: Fix dead assignment. git-svn-id: http://svn.drobilla.net/serd/trunk@352 490d8e77-9747-427b-9fa3-0b8f29cee8a0 --- src/writer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/writer.c b/src/writer.c index b03e5afd..02c362af 100644 --- a/src/writer.c +++ b/src/writer.c @@ -210,7 +210,7 @@ write_text(SerdWriter* writer, TextContext ctx, fprintf(stderr, "Invalid UTF-8: %X\n", in); const uint8_t replacement_char[] = { 0xEF, 0xBF, 0xBD }; len += sink(replacement_char, sizeof(replacement_char), writer); - return 0; + return len; } if (ctx != WRITE_URI && !(writer->style & SERD_STYLE_ASCII)) { -- cgit v1.2.1