From a0a0347ecc1a596fd66108283c76790dbeed9df4 Mon Sep 17 00:00:00 2001 From: uz Date: Fri, 12 Nov 2010 14:14:27 +0000 Subject: [PATCH] Make the Name and Col fields unsigned instead of short. git-svn-id: svn://svn.cc65.org/cc65/trunk@4850 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/common/filepos.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/common/filepos.h b/src/common/filepos.h index 9dbaa1914..e84ebbba0 100644 --- a/src/common/filepos.h +++ b/src/common/filepos.h @@ -1,8 +1,8 @@ /*****************************************************************************/ /* */ -/* filepos.h */ +/* filepos.h */ /* */ -/* File position data structure */ +/* File position data structure */ /* */ /* */ /* */ @@ -39,7 +39,7 @@ /*****************************************************************************/ -/* Data */ +/* Data */ /*****************************************************************************/ @@ -47,9 +47,9 @@ /* Type of a file position */ typedef struct FilePos FilePos; struct FilePos { - unsigned long Line; /* Line */ - unsigned short Col; /* Column */ - unsigned short Name; /* File */ + unsigned long Line; /* Line */ + unsigned Col; /* Column */ + unsigned Name; /* File */ }; /* Initializer for a FilePos */ @@ -58,7 +58,7 @@ struct FilePos { /*****************************************************************************/ -/* Code */ +/* Code */ /*****************************************************************************/