From e7df2d5d754d62e94e0c48e4d1f57592c27ab267 Mon Sep 17 00:00:00 2001 From: cuz Date: Fri, 31 Oct 2003 21:59:21 +0000 Subject: [PATCH] Change data types to get a smaller memory footprint git-svn-id: svn://svn.cc65.org/cc65/trunk@2595 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/common/filepos.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common/filepos.h b/src/common/filepos.h index 7ccde3751..dd41472f8 100644 --- a/src/common/filepos.h +++ b/src/common/filepos.h @@ -46,10 +46,10 @@ /* Type of a file position */ typedef struct FilePos FilePos; -struct FilePos { +struct FilePos { unsigned long Line; /* Line */ - unsigned Col; /* Column */ - unsigned Name; /* File */ + unsigned short Col; /* Column */ + unsigned short Name; /* File */ }; -- 2.39.5