From ce6f8d7f4e9680fe8660b0b8309c45ca1d6b5a22 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 23 Jan 2011 20:24:45 +0000 Subject: Fix build (oops). git-svn-id: http://svn.drobilla.net/serd/trunk@51 490d8e77-9747-427b-9fa3-0b8f29cee8a0 --- src/writer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/writer.c') diff --git a/src/writer.c b/src/writer.c index 85d20deb..194d26dd 100644 --- a/src/writer.c +++ b/src/writer.c @@ -86,7 +86,7 @@ write_text(SerdWriter writer, TextContext ctx, if ((in & 0x80) == 0) { // Starts with `0' size = 1; c = in & 0x7F; - if (in_range((in >= 0x20) && (in <= 0x7E)) { // Printable ASCII + if (in_range(in, 0x20, 0x7E)) { // Printable ASCII writer->sink(&in, 1, writer->stream); continue; } -- cgit v1.2.1