From af5a451ec28c624dac96db2d87491d05b08f2036 Mon Sep 17 00:00:00 2001 From: nova Date: Wed, 23 Jul 2025 19:49:57 +0200 Subject: [PATCH] size improvements of file struct --- defines.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/defines.h b/defines.h index e3de1ee..3d91be3 100644 --- a/defines.h +++ b/defines.h @@ -56,12 +56,12 @@ /* complex types are good actually */ typedef struct File { char status; - char *file_name; unsigned char file_type; unsigned short color_pair; unsigned int permissions; unsigned long file_name_width; unsigned long file_size; /*if its a file, its in bytes, if its a dir, its the count of files within that dir */ + char *file_name; } file; typedef struct Color { char *file_extension;