From: cuz Date: Mon, 24 Apr 2006 23:45:44 +0000 (+0000) Subject: Removed a C99 construct X-Git-Tag: V2.12.0~121 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=49719b0bd201c0021d27d1f407a560869fc133c2;p=cc65 Removed a C99 construct git-svn-id: svn://svn.cc65.org/cc65/trunk@3734 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/cc65/codeopt.c b/src/cc65/codeopt.c index 730c8db41..6650dd483 100644 --- a/src/cc65/codeopt.c +++ b/src/cc65/codeopt.c @@ -1416,12 +1416,13 @@ static unsigned OptPtrLoad8 (CodeSeg* S) */ { unsigned Changes = 0; + unsigned I; /* Generate register info */ CS_GenRegInfo (S); /* Walk over the entries */ - unsigned I = 0; + I = 0; while (I < CS_GetEntryCount (S)) { CodeEntry* L[5];