diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-02-14 18:46:19 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-02-14 18:46:19 +0000 |
commit | d4abb3b386520e8e0431ea4ae427e7b4898049f1 (patch) | |
tree | 30f381b228151ff39a582e95e982e3b1e482ac62 /src | |
parent | 568c380b92f76066621e3a3160f7d7ea1af5a5c9 (diff) | |
download | xine-lib-d4abb3b386520e8e0431ea4ae427e7b4898049f1.tar.gz xine-lib-d4abb3b386520e8e0431ea4ae427e7b4898049f1.tar.bz2 |
Kill some printf() warnings.
CVS patchset: 7896
CVS date: 2006/02/14 18:46:19
Diffstat (limited to 'src')
-rw-r--r-- | src/post/goom/goom_core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/post/goom/goom_core.c b/src/post/goom/goom_core.c index 52ca1857e..e6fec60ea 100644 --- a/src/post/goom/goom_core.c +++ b/src/post/goom/goom_core.c @@ -841,7 +841,7 @@ void update_message (PluginInfo *goomInfo, char *message) { if (message) { int i=1,j=0; - sprintf (goomInfo->update_message.message, message); + sprintf (goomInfo->update_message.message, "%s", message); for (j=0;goomInfo->update_message.message[j];j++) if (goomInfo->update_message.message[j]=='\n') i++; @@ -856,7 +856,7 @@ void update_message (PluginInfo *goomInfo, char *message) { int pos; float ecart; message = msg; - sprintf (msg, goomInfo->update_message.message); + sprintf (msg, "%s", goomInfo->update_message.message); while (!fin) { while (1) { |