From 51752caa5640ac712508ab0b5336199b74db1c8f Mon Sep 17 00:00:00 2001 From: cuz Date: Thu, 13 May 2004 21:17:58 +0000 Subject: [PATCH] Squeezed out a few bytes git-svn-id: svn://svn.cc65.org/cc65/trunk@3034 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- libsrc/common/fgets.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/common/fgets.c b/libsrc/common/fgets.c index ebfeb0866..ab755616a 100644 --- a/libsrc/common/fgets.c +++ b/libsrc/common/fgets.c @@ -20,7 +20,7 @@ char* __fastcall__ fgets (char* s, unsigned size, FILE* f) { - int i = 0; + unsigned i; int c; if (size == 0) {