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

Remove extraneous ulong typedef

parent f40e7fbd
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #3922 passed
......@@ -118,7 +118,7 @@ void sbbs_get_js_settings(
char value[INI_MAX_VALUE_LEN];
char* p;
js->max_bytes = (ulong)iniGetBytes(list,section,strJavaScriptMaxBytes ,/* unit: */1,defaults->max_bytes);
js->max_bytes = 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.
Finish editing this message first!
Please register or to comment