diff options
| author | Aldrik Ramaekers <aldrikboy@gmail.com> | 2024-03-14 17:16:22 +0100 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrikboy@gmail.com> | 2024-03-14 17:16:22 +0100 |
| commit | 28b00896a8cb94663a3d35313ee7d771d4af11e0 (patch) | |
| tree | 47ac8ff198b5ad9264263914b647ef5da620eefc /src/config.h | |
| parent | b7d17bdf8c0f1a4118709fbc5162463afb48b5c8 (diff) | |
use cstdint types
Diffstat (limited to 'src/config.h')
| -rw-r--r-- | src/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.h b/src/config.h index 2e64755..408cf63 100644 --- a/src/config.h +++ b/src/config.h @@ -24,8 +24,8 @@ extern utf8_int8_t save_path[MAX_INPUT_LENGTH]; extern utf8_int8_t path_buffer[MAX_INPUT_LENGTH]; extern utf8_int8_t filter_buffer[MAX_INPUT_LENGTH]; extern utf8_int8_t query_buffer[MAX_INPUT_LENGTH]; -extern int ts_thread_count; -extern int max_file_size; // in MBs +extern uint16_t ts_thread_count; +extern uint32_t max_file_size; // in MBs extern bool respect_capitalization; void ts_load_config();
\ No newline at end of file |
