mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
The __used (== __attribute__((__used)) ) silences the warning produced
by unreferenced symbol. Apply __used instead of rev. 1.5. Requested by: kan
This commit is contained in:
parent
d1ce3dfa8d
commit
11ddf4fd56
1 changed files with 1 additions and 1 deletions
|
|
@ -43,7 +43,7 @@ static const struct {
|
|||
int32_t type;
|
||||
char name[sizeof ABI_VENDOR];
|
||||
int32_t desc;
|
||||
} abitag __attribute__ ((section (ABI_SECTION), aligned(4), used)) __unused = {
|
||||
} abitag __attribute__ ((section (ABI_SECTION), aligned(4))) __used = {
|
||||
sizeof ABI_VENDOR,
|
||||
sizeof(int32_t),
|
||||
ABI_NOTETYPE,
|
||||
|
|
|
|||
Loading…
Reference in a new issue