diff options
author | David Sommerseth <davids@redhat.com> | 2009-06-12 18:10:44 +0200 |
---|---|---|
committer | David Sommerseth <davids@redhat.com> | 2009-06-12 18:10:44 +0200 |
commit | 27f81037d82585b29ed09db2f6d7ed1e30db7dd1 (patch) | |
tree | 5561c4880181b494cfd631f095ab7a010f4c0048 /src/dmidecode.c | |
parent | b1db52e62be1a700517308877b08dbf8c5d9e1eb (diff) | |
download | python-dmidecode-27f81037d82585b29ed09db2f6d7ed1e30db7dd1.tar.gz python-dmidecode-27f81037d82585b29ed09db2f6d7ed1e30db7dd1.tar.xz python-dmidecode-27f81037d82585b29ed09db2f6d7ed1e30db7dd1.zip |
Fixed another XML formatting error in dmidecode.c
Diffstat (limited to 'src/dmidecode.c')
-rw-r--r-- | src/dmidecode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dmidecode.c b/src/dmidecode.c index e5e4a4b..003e9ff 100644 --- a/src/dmidecode.c +++ b/src/dmidecode.c @@ -4336,7 +4336,7 @@ xmlNode *dmi_decode(xmlNode *prnt_n, dmi_codes_major *dmiMajor, struct dmi_heade dmi_pointing_device_type(sect_n, data[0x04]); dmi_pointing_device_interface(sect_n, data[0x05]); - dmixml_AddTextContent(sect_n, "Buttons", "%i", data[0x06]); + dmixml_AddTextChild(sect_n, "Buttons", "%i", data[0x06]); break; case 22: /* 3.3.23 Portable Battery */ |