]> xenbits.xensource.com Git - libvirt.git/commitdiff
Workaround issue with clang and inline functions with static vars
authorDaniel P. Berrange <berrange@redhat.com>
Mon, 13 May 2013 11:43:08 +0000 (12:43 +0100)
committerDaniel P. Berrange <berrange@redhat.com>
Tue, 14 May 2013 14:00:22 +0000 (15:00 +0100)
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>
tests/vircgroupmock.c

index 17ea75f0243ec4024f24074203dd801325ee20e5..f1a5700c6a2d4ac04bf7bf9b4694cfb55ceca718 100644 (file)
@@ -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/"