]> git.sur5r.net Git - cc65/blobdiff - libsrc/apple2/dir.h
don't use constructor to setup runtime stack
[cc65] / libsrc / apple2 / dir.h
index 997e63bcd4f9439a904f521980fd7894d5c14bb9..0faffd634e39162168aa00b012fd87f08b84c628 100644 (file)
@@ -49,9 +49,9 @@ struct DIR {
     union {
        unsigned char bytes[512];
        struct {
-           unsigned prev_block;
-           unsigned next_block;
-           char     entries[1];
+           unsigned      prev_block;
+           unsigned      next_block;
+           unsigned char entries[1];
        } content;
     } block;
 };