Fix signed mismatch

This commit is contained in:
Pete Dietl 2019-05-23 18:26:51 -05:00
parent 79ce9896f4
commit cae30af15e
2 changed files with 4 additions and 2 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
bld
src/tags

View File

@ -65,8 +65,8 @@
struct interval {
int first;
int last;
wchar_t first;
wchar_t last;
};
/* auxiliary function for binary search in interval table */