Skip to content

Commit bbd841c

Browse files
authored
Merge pull request #4230 from masatake/minor-fixes
main: fix typos in a parameter name
2 parents d7b87f4 + 60e8eb4 commit bbd841c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

main/options.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1215,12 +1215,12 @@ static void processExcludeExceptionOption (
12151215
}
12161216

12171217
extern bool isExcludedFile (const char* const name,
1218-
bool falseIfExceptionsAreDefeind)
1218+
bool falseIfExceptionsAreDefined)
12191219
{
12201220
const char* base = baseFilename (name);
12211221
bool result = false;
12221222

1223-
if (falseIfExceptionsAreDefeind
1223+
if (falseIfExceptionsAreDefined
12241224
&& ExcludedException != NULL
12251225
&& stringListCount (ExcludedException) > 0)
12261226
return false;

main/options_p.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ extern bool cArgIsOption (cookedArgs* const current);
147147
extern const char* cArgItem (cookedArgs* const current);
148148
extern void cArgForth (cookedArgs* const current);
149149
extern bool isExcludedFile (const char* const name,
150-
bool falseIfExceptionsAreDefeind);
150+
bool falseIfExceptionsAreDefined);
151151
extern bool isIncludeFile (const char *const fileName);
152152
extern void parseCmdlineOptions (cookedArgs* const cargs);
153153
extern void previewFirstOption (cookedArgs* const cargs);

0 commit comments

Comments
 (0)