1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-03-21 22:28:37 -05:00

Fix another type mismatch introduced by r9409.

[originally from svn r9427]
[r9409 == 053d2ba6d1c35c3d3c77bbc48bfd31fd8628ed35]
This commit is contained in:
Simon Tatham 2012-03-05 18:40:36 +00:00
parent 78dc12eec7
commit 947fa8f0ae

View File

@ -64,8 +64,8 @@
#include "putty.h" /* for prototypes */ #include "putty.h" /* for prototypes */
struct interval { struct interval {
int first; unsigned int first;
int last; unsigned int last;
}; };
/* auxiliary function for binary search in interval table */ /* auxiliary function for binary search in interval table */