Change Scl_Pair_t_ member types to long to allow for large liberty file loading.

Signed-off-by: Mike Inouye <mikeinouye@google.com>
This commit is contained in:
Mike Inouye 2024-06-13 23:12:45 +00:00
parent 806a996b88
commit a6bf51111f
1 changed files with 2 additions and 2 deletions

View File

@ -49,8 +49,8 @@ typedef enum {
typedef struct Scl_Pair_t_ Scl_Pair_t;
struct Scl_Pair_t_
{
int Beg; // item beginning
int End; // item end
long Beg; // item beginning
long End; // item end
};
typedef struct Scl_Item_t_ Scl_Item_t;