]> git.sur5r.net Git - cc65/commitdiff
Reorder variables to take advangate of improved code generation.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 7 Jun 2012 13:31:32 +0000 (13:31 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 7 Jun 2012 13:31:32 +0000 (13:31 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5694 b7a2c559-68d2-44c3-8de9-860c34a00d81

libsrc/cbm/opendir.c

index c23aa0d51b82ae3b35fb237caf44fad8f428f341..c89b3893f22b3ef8aa1f4ded96829cdd85426037 100644 (file)
@@ -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.