diff options
author | Phil Jones <philj56@gmail.com> | 2022-07-05 11:28:34 +0100 |
---|---|---|
committer | Phil Jones <philj56@gmail.com> | 2022-07-05 11:28:34 +0100 |
commit | ee0ed3c506f8f45fce42cbabc1d9521382740924 (patch) | |
tree | 1811630182026a946042ddc9af8d537fd2418b15 /src | |
parent | cff85b9a55c7d3f08de9ef9272b97d7fa6212302 (diff) |
Fix typo.
Probably a good idea to allow more than 128 runs of a program.
Diffstat (limited to 'src')
-rw-r--r-- | src/string_vec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string_vec.h b/src/string_vec.h index 2a106a2..7fce96e 100644 --- a/src/string_vec.h +++ b/src/string_vec.h @@ -8,7 +8,7 @@ struct scored_string { char *string; int8_t search_score; - int8_t history_score; + int32_t history_score; }; struct string_vec { |