Blob Blame History Raw
From e22e23075b073ef15afc57b10790e1a170331cff Mon Sep 17 00:00:00 2001
From: Adam Williamson <awilliamson@mandriva.org>
Date: Thu, 22 Sep 2011 07:36:20 +0000
Subject: fix string literal

---
diff --git a/test/simple-at.c b/test/simple-at.c
index 7da2bb5..265239e 100644
--- a/test/simple-at.c
+++ b/test/simple-at.c
@@ -605,7 +605,7 @@ _festival_say (const char *text, const char *voice, SPIBoolean shutup)
 static void
 _festival_write (const gchar *command_string, int fd)
 {
-  fprintf(stderr, command_string);
+  fprintf(stderr, "%s", command_string);
   if (fd < 0) {
     perror("socket");
     return;
--
cgit v0.9.2