From: uz Date: Thu, 7 Jun 2012 13:31:32 +0000 (+0000) Subject: Reorder variables to take advangate of improved code generation. X-Git-Tag: V2.14~374 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=4e0cbcf33fd718f7cd36e06070e13be8e232ee9e;p=cc65 Reorder variables to take advangate of improved code generation. git-svn-id: svn://svn.cc65.org/cc65/trunk@5694 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/libsrc/cbm/opendir.c b/libsrc/cbm/opendir.c index c23aa0d51..c89b3893f 100644 --- a/libsrc/cbm/opendir.c +++ b/libsrc/cbm/opendir.c @@ -14,8 +14,8 @@ DIR* __fastcall__ opendir (register const char* name) { unsigned char buf[32]; - DIR d; DIR* dir = 0; + DIR d; /* Setup the actual file name that is sent to the disk. We accept "0:", * "1:" and "." as directory names.