Merge pull request #302 from mikesinouye/scl

Change Scl_Pair_t_ membes to long to enable larger liberty file loading.
This commit is contained in:
alanminko 2024-06-17 10:12:12 +02:00 committed by GitHub
commit 7beda11621
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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;