mirror of https://github.com/xzeldon/htop.git
Merge pull request #490 from Explorer09/macro-fixes
Fix macro Header_forEachColumn
This commit is contained in:
commit
7d72715a6b
2
Header.c
2
Header.c
|
@ -37,7 +37,7 @@ typedef struct Header_ {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef Header_forEachColumn
|
#ifndef Header_forEachColumn
|
||||||
#define Header_forEachColumn(this_, i_) for (int i_=0; i_ < this->nrColumns; i_++)
|
#define Header_forEachColumn(this_, i_) for (int (i_)=0; (i_) < (this_)->nrColumns; ++(i_))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
Header* Header_new(struct ProcessList_* pl, Settings* settings, int nrColumns) {
|
Header* Header_new(struct ProcessList_* pl, Settings* settings, int nrColumns) {
|
||||||
|
|
2
Header.h
2
Header.h
|
@ -28,7 +28,7 @@ typedef struct Header_ {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef Header_forEachColumn
|
#ifndef Header_forEachColumn
|
||||||
#define Header_forEachColumn(this_, i_) for (int i_=0; i_ < this->nrColumns; i_++)
|
#define Header_forEachColumn(this_, i_) for (int (i_)=0; (i_) < (this_)->nrColumns; ++(i_))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
Header* Header_new(struct ProcessList_* pl, Settings* settings, int nrColumns);
|
Header* Header_new(struct ProcessList_* pl, Settings* settings, int nrColumns);
|
||||||
|
|
Loading…
Reference in New Issue