summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-04-15 21:17:01 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-04-15 21:17:01 +0000
commitcdd35ba22062301a7c94ef0968a8b7ea842eca5f (patch)
tree8f0b196c3bd908084a4148e5f8c4ee3038147e2d /apps
parent5811214b0c6fc7b060b46a3eee3d919ffe850e89 (diff)
downloadrockbox-cdd35ba22062301a7c94ef0968a8b7ea842eca5f.tar.gz
rockbox-cdd35ba22062301a7c94ef0968a8b7ea842eca5f.zip
fix compiler error
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6305 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/midi/guspat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/midi/guspat.c b/apps/plugins/midi/guspat.c
index 675d6ffe3d..6508591f74 100644
--- a/apps/plugins/midi/guspat.c
+++ b/apps/plugins/midi/guspat.c
@@ -97,7 +97,7 @@ struct GPatch * gusload(char * filename)
97 if(file == -1) 97 if(file == -1)
98 { 98 {
99 char message[50]; 99 char message[50];
100 snprintf(message, 50, "Error opening %s", filename); 100 rb->snprintf(message, 50, "Error opening %s", filename);
101 rb->splash(HZ*2, true, message); 101 rb->splash(HZ*2, true, message);
102 return NULL; 102 return NULL;
103 } 103 }