util: add missing equal sign in initialization

Fix the build with clang:
util/virperf.c:86:27: error: use of GNU 'missing =' extension
    in designator [-Werror,-Wgnu-designator]
    [VIR_PERF_EVENT_MBML] {
                          ^
                          =
This commit is contained in:
Ján Tomko 2017-04-13 14:02:46 +02:00
parent 5a990e0bf3
commit b80b0c4517

View File

@ -83,7 +83,7 @@ static struct virPerfEventAttr attrs[] = {
.attrType = 0, .attrType = 0,
.attrConfig = 2 .attrConfig = 2
}, },
[VIR_PERF_EVENT_MBML] { [VIR_PERF_EVENT_MBML] = {
.attrType = 0, .attrType = 0,
.attrConfig = 3 .attrConfig = 3
}, },