Skip to content

Commit 6ed078f

Browse files
authored
Merge pull request #47 from hfiref0x/dev209
Internal rearrange RTLs update
2 parents 93859cf + 7530cdf commit 6ed078f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+3860
-2503
lines changed

Source/FILELIST.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ winobjex64\excepth.h
2727
* Extras menu handler *
2828
winobjex64\extras\extras.c
2929
winobjex64\extras\extras.h
30-
winobjex64\extras\extrasHandlers.h
3130

3231
* Windows 7/8/8.1 missing API support *
3332
winobjex64\extapi.c

Source/Shared/minirtl/strtou64.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ unsigned long long strtou64_a(char *s)
1010

1111
while (*s != 0) {
1212
c = *s;
13-
if (_isdigit_w(c))
13+
if (_isdigit_a(c))
1414
a = (a*10)+((unsigned long long)c-'0');
1515
else
1616
break;

0 commit comments

Comments
 (0)