1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 09:27:59 +00:00

Fix another type mismatch introduced by r9409.

[originally from svn r9427]
[r9409 == 053d2ba6d1]
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 */
struct interval {
int first;
int last;
unsigned int first;
unsigned int last;
};
/* auxiliary function for binary search in interval table */