libctf: Mark bswap_identity_64 inline function as static.

This is similar to cbbbc402e0 and fixes
a link error with duplicately defined symbols on FreeBSD.

libctf/ChangeLog:

	* swap.h (bswap_identity_64): Make static.
This commit is contained in:
John Baldwin 2020-03-05 14:27:08 -08:00 committed by Alan Modra
parent 435edf0bf2
commit 119789424b
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2020-03-11 John Baldwin <jhb@FreeBSD.org>
* swap.h (bswap_identity_64): Make static.
2020-01-18 Nick Clifton <nickc@redhat.com>
Binutils 2.34 branch created.

View File

@ -43,7 +43,7 @@ bswap_32 (uint32_t v)
| ((v & 0x000000ff) << 24));
}
inline uint64_t
static inline uint64_t
bswap_identity_64 (uint64_t v)
{
return v;