From: Niels Möller Date: Sun, 16 Oct 2005 20:36:51 +0000 (+0200) Subject: (sexp_get_char): Use unsigned for the done flag. X-Git-Tag: nettle_1.14_release_20051205~91 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=61c50dc5a3f0f2244a88d7befbbd575a252f3241;p=thirdparty%2Fnettle.git (sexp_get_char): Use unsigned for the done flag. Rev: src/nettle/tools/input.c:1.3 --- diff --git a/tools/input.c b/tools/input.c index 69addb7e..5f99afb6 100644 --- a/tools/input.c +++ b/tools/input.c @@ -63,7 +63,7 @@ sexp_get_char(struct sexp_input *input) if (input->coding) for (;;) { - int done; + unsigned done; sexp_get_raw_char(input); if (input->ctype == SEXP_EOF_CHAR)