1
0
mirror of https://github.com/cc65/cc65.git synced 2024-10-16 11:23:57 +00:00

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
This commit is contained in:
uz 2010-11-12 14:14:27 +00:00
parent c59eeb3110
commit a0a0347ecc

View File

@ -48,8 +48,8 @@
typedef struct FilePos FilePos; typedef struct FilePos FilePos;
struct FilePos { struct FilePos {
unsigned long Line; /* Line */ unsigned long Line; /* Line */
unsigned short Col; /* Column */ unsigned Col; /* Column */
unsigned short Name; /* File */ unsigned Name; /* File */
}; };
/* Initializer for a FilePos */ /* Initializer for a FilePos */