diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-04-15 21:17:01 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-04-15 21:17:01 +0000 |
commit | cdd35ba22062301a7c94ef0968a8b7ea842eca5f (patch) | |
tree | 8f0b196c3bd908084a4148e5f8c4ee3038147e2d /apps/plugins/midi/guspat.c | |
parent | 5811214b0c6fc7b060b46a3eee3d919ffe850e89 (diff) |
fix compiler error
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6305 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/midi/guspat.c')
-rw-r--r-- | apps/plugins/midi/guspat.c | 2 |
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) if(file == -1) { char message[50]; - snprintf(message, 50, "Error opening %s", filename); + rb->snprintf(message, 50, "Error opening %s", filename); rb->splash(HZ*2, true, message); return NULL; } |