Skip to content

Commit

Permalink
Merge pull request trustedsec#10 from zeroSteiner/fix/vs2013-builds
Browse files Browse the repository at this point in the history
Remove the inline compiler directive
  • Loading branch information
kev169 authored Dec 10, 2022
2 parents 6f1b9ab + ade6101 commit f34623d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion COFFLoader.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ unsigned char* getContents(char* filepath, uint32_t* outsize) {
return buffer;
}

static inline BOOL starts_with(const char* string, const char* substring) {
static BOOL starts_with(const char* string, const char* substring) {
return strncmp(string, substring, strlen(substring)) == 0;
}

Expand Down

0 comments on commit f34623d

Please sign in to comment.