mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-29 17:33:09 +00:00
* src/parthelper.c: fix a superfluous % on printf format problem
raised by Matthias Bolte Daniel
This commit is contained in:
parent
ecd937164f
commit
609e31dd3e
@ -1,3 +1,8 @@
|
|||||||
|
Fri Jun 26 22:13:16 CEST 2009 Daniel Veillard <veillard@redhat.com>
|
||||||
|
|
||||||
|
* src/parthelper.c: fix a superfluous % on printf format problem
|
||||||
|
raised by Matthias Bolte
|
||||||
|
|
||||||
Fri Jun 26 22:02:22 CEST 2009 Daniel Veillard <veillard@redhat.com>
|
Fri Jun 26 22:02:22 CEST 2009 Daniel Veillard <veillard@redhat.com>
|
||||||
|
|
||||||
* src/nodeinfo.c: sometimes libnuma can't handle some topologies,
|
* src/nodeinfo.c: sometimes libnuma can't handle some topologies,
|
||||||
|
@ -70,7 +70,7 @@ int main(int argc, char **argv)
|
|||||||
|
|
||||||
/* return the geometry of the disk and then exit */
|
/* return the geometry of the disk and then exit */
|
||||||
if(cmd == DISK_GEOMETRY) {
|
if(cmd == DISK_GEOMETRY) {
|
||||||
printf("%d%c%d%c%d%c%",
|
printf("%d%c%d%c%d%c",
|
||||||
dev->hw_geom.cylinders, '\0',
|
dev->hw_geom.cylinders, '\0',
|
||||||
dev->hw_geom.heads, '\0',
|
dev->hw_geom.heads, '\0',
|
||||||
dev->hw_geom.sectors, '\0');
|
dev->hw_geom.sectors, '\0');
|
||||||
|
Loading…
Reference in New Issue
Block a user