1
0
mirror of https://github.com/xzeldon/htop.git synced 2025-02-25 04:13:25 +03:00

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:
Christian Göttsche 2020-08-21 10:38:44 +02:00
parent b92f62f912
commit 9fde0835ed
2 changed files with 3 additions and 0 deletions

@ -20,3 +20,5 @@ typedef struct ZfsArcStats_ {
unsigned long long int uncompressed;
} ZfsArcStats;
}*/
static int make_iso_compilers_happy __attribute__((unused));

@ -23,4 +23,5 @@ typedef struct ZfsArcStats_ {
unsigned long long int uncompressed;
} ZfsArcStats;
#endif