Fix a signedness compiler warning
This commit is contained in:
parent
e17c5e2083
commit
7de8c84e8f
10
sdn.cpp
10
sdn.cpp
|
@ -93,8 +93,8 @@ fun to_mb (const wstring &wide) -> string {
|
||||||
return mb;
|
return mb;
|
||||||
}
|
}
|
||||||
|
|
||||||
fun prefix_length (const wstring &in, const wstring &of) -> int {
|
fun prefix_length (const wstring &in, const wstring &of) -> size_t {
|
||||||
int score = 0;
|
size_t score = 0;
|
||||||
for (size_t i = 0; i < of.size () && in.size () >= i && in[i] == of[i]; i++)
|
for (size_t i = 0; i < of.size () && in.size () >= i && in[i] == of[i]; i++)
|
||||||
score++;
|
score++;
|
||||||
return score;
|
return score;
|
||||||
|
@ -1008,10 +1008,10 @@ fun show_help () {
|
||||||
fun search (const wstring &needle, int push) -> int {
|
fun search (const wstring &needle, int push) -> int {
|
||||||
int best = g.cursor, best_n = 0, matches = 0, step = push != 0 ? push : 1;
|
int best = g.cursor, best_n = 0, matches = 0, step = push != 0 ? push : 1;
|
||||||
for (int i = 0, count = g.entries.size (); i < count; i++) {
|
for (int i = 0, count = g.entries.size (); i < count; i++) {
|
||||||
auto o = (g.cursor + (count + i * step) + (count + push)) % count;
|
int o = (g.cursor + (count + i * step) + (count + push)) % count;
|
||||||
int n = prefix_length (to_wide (g.entries[o].filename), needle);
|
size_t n = prefix_length (to_wide (g.entries[o].filename), needle);
|
||||||
matches += n == needle.size ();
|
matches += n == needle.size ();
|
||||||
if (n > best_n) {
|
if (n > (size_t) best_n) {
|
||||||
best = o;
|
best = o;
|
||||||
best_n = n;
|
best_n = n;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue