mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-22 04:25:18 +00:00
Workaround issue with clang and inline functions with static vars
Clang does not like it when you pass a static variable to an inline function vircgroupmock.c:462:22: error: static variable 'fakesysfsdir' is used in an inline function with external linkage [-Werror,-Wstatic-in-inline] Just make the var non-static to avoid this Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
This commit is contained in:
parent
c43b685a1d
commit
78cff68ca3
@ -37,7 +37,12 @@ static int (*realaccess)(const char *path, int mode);
|
||||
static int (*reallstat)(const char *path, struct stat *sb);
|
||||
static int (*real__lxstat)(int ver, const char *path, struct stat *sb);
|
||||
static int (*realmkdir)(const char *path, mode_t mode);
|
||||
static char *fakesysfsdir;
|
||||
|
||||
/* Don't make static, since it causes problems with clang
|
||||
* when passed as an arg to asprintf()
|
||||
* vircgroupmock.c:462:22: error: static variable 'fakesysfsdir' is used in an inline function with external linkage [-Werror,-Wstatic-in-inline]
|
||||
*/
|
||||
char *fakesysfsdir;
|
||||
|
||||
|
||||
# define SYSFS_PREFIX "/not/really/sys/fs/cgroup/"
|
||||
|
Loading…
x
Reference in New Issue
Block a user