mirror of https://github.com/xzeldon/htop.git
Avoid empty translation unit warning
zfs/ZfsArcStats.c:22: error: ISO C forbids an empty translation unit [-Werror=pedantic] 22 | }*/ |
This commit is contained in:
parent
b92f62f912
commit
9fde0835ed
|
@ -20,3 +20,5 @@ typedef struct ZfsArcStats_ {
|
||||||
unsigned long long int uncompressed;
|
unsigned long long int uncompressed;
|
||||||
} ZfsArcStats;
|
} ZfsArcStats;
|
||||||
}*/
|
}*/
|
||||||
|
|
||||||
|
static int make_iso_compilers_happy __attribute__((unused));
|
||||||
|
|
|
@ -23,4 +23,5 @@ typedef struct ZfsArcStats_ {
|
||||||
unsigned long long int uncompressed;
|
unsigned long long int uncompressed;
|
||||||
} ZfsArcStats;
|
} ZfsArcStats;
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue