[syslinux:master] Fixing compilation warning

syslinux-bot for Erwan Velu erwanaliasr1 at gmail.com
Tue Jun 22 14:36:14 PDT 2010


Commit-ID:  f6da697067326409b4b70096df9351126acb7c8e
Gitweb:     http://syslinux.zytor.com/commit/f6da697067326409b4b70096df9351126acb7c8e
Author:     Erwan Velu <erwanaliasr1 at gmail.com>
AuthorDate: Mon, 21 Jun 2010 22:24:21 +0200
Committer:  Erwan Velu <erwanaliasr1 at gmail.com>
CommitDate: Mon, 21 Jun 2010 22:24:21 +0200

Fixing compilation warning

Reported by Genne Cumm, some more_printf calls generates gcc warning.


---
 com32/hdt/hdt-cli-cpu.c    |    2 +-
 com32/hdt/hdt-cli-kernel.c |    2 +-
 com32/hdt/hdt-cli-pci.c    |    4 ++--
 com32/hdt/hdt-cli-pxe.c    |    6 +++---
 4 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/com32/hdt/hdt-cli-cpu.c b/com32/hdt/hdt-cli-cpu.c
index aa7ec8f..1695ccd 100644
--- a/com32/hdt/hdt-cli-cpu.c
+++ b/com32/hdt/hdt-cli-cpu.c
@@ -67,7 +67,7 @@ static void show_flag(char *buffer, bool flag, char *flag_name, bool flush)
     if ((((strlen(buffer) + strlen(flag_name)) > 66) && flag) || flush) {
 	snprintf(output_buffer, sizeof output_buffer, "Flags     : %s\n",
 		 buffer);
-	more_printf(output_buffer);
+	more_printf("%s", output_buffer);
 	memset(buffer, 0, sizeof(buffer));
 	if (flush)
 	    return;
diff --git a/com32/hdt/hdt-cli-kernel.c b/com32/hdt/hdt-cli-kernel.c
index d4946f3..f64771b 100644
--- a/com32/hdt/hdt-cli-kernel.c
+++ b/com32/hdt/hdt-cli-kernel.c
@@ -83,7 +83,7 @@ void main_show_kernel(int argc __unused, char **argv __unused,
     }
     if (found == true) {
 	strncat(buffer, "\n", 1);
-	more_printf(buffer);
+	more_printf("%s", buffer);
     }
 }
 
diff --git a/com32/hdt/hdt-cli-pci.c b/com32/hdt/hdt-cli-pci.c
index c86a792..e0b7830 100644
--- a/com32/hdt/hdt-cli-pci.c
+++ b/com32/hdt/hdt-cli-pci.c
@@ -206,8 +206,8 @@ static void show_pci_devices(int argc __unused, char **argv __unused,
 			 pci_device->product,
 			 pci_device->sub_vendor, pci_device->sub_product);
 
-	    more_printf(first_line);
-	    more_printf(second_line);
+	    more_printf("%s", first_line);
+	    more_printf("%s", second_line);
 	    more_printf("\n");
 	} else if (nopciids == true) {
 	    if (nomodulesfile == true) {
diff --git a/com32/hdt/hdt-cli-pxe.c b/com32/hdt/hdt-cli-pxe.c
index 3a61bc0..29e760a 100644
--- a/com32/hdt/hdt-cli-pxe.c
+++ b/com32/hdt/hdt-cli-pxe.c
@@ -66,14 +66,14 @@ void main_show_pxe(int argc __unused, char **argv __unused,
 	snprintf(buffer, sizeof(buffer),
 		 " PCI Bus pos. : %02x:%02x.%02x\n", p->pci_bus,
 		 p->pci_dev, p->pci_func);
-	more_printf(buffer);
+	more_printf("%s", buffer);
     } else {
 	snprintf(buffer, sizeof(buffer), " Manufacturer : %s \n",
 		 p->pci_device->dev_info->vendor_name);
-	more_printf(buffer);
+	more_printf("%s", buffer);
 	snprintf(buffer, sizeof(buffer), " Product      : %s \n",
 		 p->pci_device->dev_info->product_name);
-	more_printf(buffer);
+	more_printf("%s", buffer);
     }
     more_printf(" Addresses    : %d.%d.%d.%d @ %s\n", p->ip_addr[0],
 		p->ip_addr[1], p->ip_addr[2], p->ip_addr[3], p->mac_addr);



More information about the Syslinux-commits mailing list