|
@@ -196,7 +196,7 @@ static inline int next_present_section_nr(int section_nr)
|
|
|
}
|
|
}
|
|
|
#define for_each_present_section_nr(start, section_nr) \
|
|
#define for_each_present_section_nr(start, section_nr) \
|
|
|
for (section_nr = next_present_section_nr(start-1); \
|
|
for (section_nr = next_present_section_nr(start-1); \
|
|
|
- ((section_nr >= 0) && \
|
|
|
|
|
|
|
+ ((section_nr != -1) && \
|
|
|
(section_nr <= __highest_present_section_nr)); \
|
|
(section_nr <= __highest_present_section_nr)); \
|
|
|
section_nr = next_present_section_nr(section_nr))
|
|
section_nr = next_present_section_nr(section_nr))
|
|
|
|
|
|