From: Adam Dickmeiss Date: Fri, 1 Oct 2004 13:16:18 +0000 (+0000) Subject: Added ()s to avoid warning. X-Git-Tag: YAZ.2.0.26~1 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=36823208064a499a7813301dd494bdeb88d230d7 Added ()s to avoid warning. --- diff --git a/src/odr.c b/src/odr.c index 4cf86ad..65ad86d 100644 --- a/src/odr.c +++ b/src/odr.c @@ -2,7 +2,7 @@ * Copyright (c) 1995-2004, Index Data * See the file LICENSE for details. * - * $Id: odr.c,v 1.5 2004-08-24 08:44:10 adam Exp $ + * $Id: odr.c,v 1.6 2004-10-01 13:16:18 adam Exp $ * */ #if HAVE_CONFIG_H @@ -116,7 +116,7 @@ void odr_FILE_write(ODR o, void *handle, int type, fputs(" ..... ", (FILE*) handle); i = len - 1000; } - if (strchr("\r\n\f\t", c) || c >= ' ' && c <= 126) + if (strchr("\r\n\f\t", c) || (c >= ' ' && c <= 126)) putc(c, (FILE*) handle); else {