summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorFabiano FidĂȘncio <fabiano@fidencio.org>2012-03-23 13:02:24 +0000
committerDaniel P. Berrange <berrange@redhat.com>2012-03-23 13:03:45 +0000
commit5c6749af530c3778b3d5f5ed42de3b8524997614 (patch)
treeb86257dd346f3a26691c5c08ee6f30a31e5603ab /tools
parent8a8d9f85343398287f747af902c083f855681674 (diff)
downloadlibosinfo-5c6749af530c3778b3d5f5ed42de3b8524997614.tar.gz
Add missing initializers for OsinfoLabel structs
Diffstat (limited to 'tools')
-rw-r--r--tools/osinfo-query.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/osinfo-query.c b/tools/osinfo-query.c
index 9383d03..8c96b62 100644
--- a/tools/osinfo-query.c
+++ b/tools/osinfo-query.c
@@ -71,7 +71,7 @@ static struct OsinfoLabel os_labels[] = {
"Code name", FALSE, 10 },
{ OSINFO_ENTITY_PROP_ID,
"ID", TRUE, 40 },
- { NULL, NULL, 0 },
+ { NULL, NULL, 0, 0},
};
static struct OsinfoLabel platform_labels[] = {
@@ -91,7 +91,7 @@ static struct OsinfoLabel platform_labels[] = {
"Code name", FALSE, 10 },
{ OSINFO_ENTITY_PROP_ID,
"ID", TRUE, 40 },
- { NULL, NULL, 0 },
+ { NULL, NULL, 0, 0 },
};
static struct OsinfoLabel device_labels[] = {
@@ -111,13 +111,13 @@ static struct OsinfoLabel device_labels[] = {
"Bus", TRUE, 8 },
{ OSINFO_ENTITY_PROP_ID,
"ID", TRUE, 40 },
- { NULL, NULL, 0 },
+ { NULL, NULL, 0, 0 },
};
static struct OsinfoLabel deployment_labels[] = {
{ OSINFO_ENTITY_PROP_ID,
"ID", TRUE, 40 },
- { NULL, NULL, 0 },
+ { NULL, NULL, 0, 0 },
};