Skip to content
Snippets Groups Projects
Commit 61c52193 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Add back a (different) typecast to eliminate MSVC warning

parent e12e4508
Branches
Tags
No related merge requests found
......@@ -118,7 +118,7 @@ void sbbs_get_js_settings(
char value[INI_MAX_VALUE_LEN];
char* p;
js->max_bytes = iniGetBytes(list,section,strJavaScriptMaxBytes ,/* unit: */1,defaults->max_bytes);
js->max_bytes = (uint)iniGetBytes(list,section,strJavaScriptMaxBytes ,/* unit: */1,defaults->max_bytes);
js->time_limit = iniGetInteger(list,section,strJavaScriptTimeLimit ,defaults->time_limit);
js->gc_interval = iniGetInteger(list,section,strJavaScriptGcInterval ,defaults->gc_interval);
js->yield_interval = iniGetInteger(list,section,strJavaScriptYieldInterval ,defaults->yield_interval);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment