diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2017-07-28 17:44:36 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2017-07-28 17:44:36 +0000 |
commit | 834d4c5613e9c57c0b9fba46fa717fd7fb9d5891 (patch) | |
tree | 610a3598ffcd1fdcb97c475a59bccac84f41bbdd /source/compiler/prmacros.c | |
parent | 744d47ba98ced2e2a7d3aff2f894136544386e34 (diff) |
Notes
Diffstat (limited to 'source/compiler/prmacros.c')
-rw-r--r-- | source/compiler/prmacros.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/compiler/prmacros.c b/source/compiler/prmacros.c index 55aab4668124..675d4522cb93 100644 --- a/source/compiler/prmacros.c +++ b/source/compiler/prmacros.c @@ -483,7 +483,7 @@ PrAddMacro ( { /* Search the macro arg list for matching arg */ - for (i = 0; Args[i].Name && (i < PR_MAX_MACRO_ARGS); i++) + for (i = 0; ((i < PR_MAX_MACRO_ARGS) && Args[i].Name); i++) { /* * Save argument offset within macro body. This is the mechanism |