mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-30 06:25:29 -04:00
[loc] add random request for translator help where needed
* This will randomly produce a message for users of a translation that hasn't been updated in a while requesting help and pointing them to: http://rufus.akeo.ie/translate * Closes #435 * Also fix a WDK compilation issue with strtoll
This commit is contained in:
parent
474e136e52
commit
26af32b522
7 changed files with 48 additions and 12 deletions
|
@ -50,7 +50,7 @@ static __inline int64_t ReadIniKey64(const char* key) {
|
|||
int64_t val = 0;
|
||||
char* str = get_token_data_file(key, ini_file);
|
||||
if (str != NULL) {
|
||||
val = strtoll(str, NULL, 0);
|
||||
val = _strtoi64(str, NULL, 0);
|
||||
free(str);
|
||||
}
|
||||
return val;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue