Turn "int checked" flag into 'char' flag to lessen memory
consumption a bit. Indeed, the test allocates a lot of these
data objects, so the size decrease from 36 to 32 bytes on
32-bit platforms is good to have.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
struct dir_entry_info *prev_link; /* List of hard links for same file */
char *name;
struct dir_info *parent; /* Parent directory */
- char type; /* f => file, d => dir, s => symlink */
- int checked; /* Temporary flag used when checking */
union {
struct file_info *file;
struct dir_info *dir;
struct symlink_info *symlink;
void *target;
};
+ char type; /* f => file, d => dir, s => symlink */
+ char checked; /* Temporary flag used when checking */
};
struct fd_info /* We keep a number of files open */