Ville Skyttä 75f02c
From e22e23075b073ef15afc57b10790e1a170331cff Mon Sep 17 00:00:00 2001
Ville Skyttä 75f02c
From: Adam Williamson <awilliamson@mandriva.org>
Ville Skyttä 75f02c
Date: Thu, 22 Sep 2011 07:36:20 +0000
Ville Skyttä 75f02c
Subject: fix string literal
Ville Skyttä 75f02c
Ville Skyttä 75f02c
---
Ville Skyttä 75f02c
diff --git a/test/simple-at.c b/test/simple-at.c
Ville Skyttä 75f02c
index 7da2bb5..265239e 100644
Ville Skyttä 75f02c
--- a/test/simple-at.c
Ville Skyttä 75f02c
+++ b/test/simple-at.c
Ville Skyttä 75f02c
@@ -605,7 +605,7 @@ _festival_say (const char *text, const char *voice, SPIBoolean shutup)
Ville Skyttä 75f02c
 static void
Ville Skyttä 75f02c
 _festival_write (const gchar *command_string, int fd)
Ville Skyttä 75f02c
 {
Ville Skyttä 75f02c
-  fprintf(stderr, command_string);
Ville Skyttä 75f02c
+  fprintf(stderr, "%s", command_string);
Ville Skyttä 75f02c
   if (fd < 0) {
Ville Skyttä 75f02c
     perror("socket");
Ville Skyttä 75f02c
     return;
Ville Skyttä 75f02c
--
Ville Skyttä 75f02c
cgit v0.9.2