diff options
| -rw-r--r-- | mm/sparse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/sparse.c b/mm/sparse.c index 7ea5dc6c6b19..77a0554fa5bd 100644 --- a/mm/sparse.c +++ b/mm/sparse.c | |||
| @@ -197,7 +197,7 @@ static inline int next_present_section_nr(int section_nr) | |||
| 197 | } | 197 | } |
| 198 | #define for_each_present_section_nr(start, section_nr) \ | 198 | #define for_each_present_section_nr(start, section_nr) \ |
| 199 | for (section_nr = next_present_section_nr(start-1); \ | 199 | for (section_nr = next_present_section_nr(start-1); \ |
| 200 | ((section_nr >= 0) && \ | 200 | ((section_nr != -1) && \ |
| 201 | (section_nr <= __highest_present_section_nr)); \ | 201 | (section_nr <= __highest_present_section_nr)); \ |
| 202 | section_nr = next_present_section_nr(section_nr)) | 202 | section_nr = next_present_section_nr(section_nr)) |
| 203 | 203 | ||
