1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

Fix TUNABLE_UINT64() on 32bit architectures.

The macro is not used in the tree.

Sponsored by:	The FreeBSD Foundation
MFC after:	1 week
This commit is contained in:
Konstantin Belousov 2017-03-27 06:37:03 +00:00
parent dee33b4bd5
commit 97222e17ab
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=316009

View File

@ -352,7 +352,7 @@ struct tunable_uint64 {
uint64_t *var;
};
#define TUNABLE_UINT64(path, var) \
static struct tunable_ulong __CONCAT(__tunable_uint64_, __LINE__) = { \
static struct tunable_uint64 __CONCAT(__tunable_uint64_, __LINE__) = { \
(path), \
(var), \
}; \