summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Salfischberger <tomas@rockbox.org>2005-06-01 20:35:08 +0000
committerTomas Salfischberger <tomas@rockbox.org>2005-06-01 20:35:08 +0000
commit195b9d3630432fc3943ac7e1c08b3b859866f11e (patch)
treedc7b57594d3e7d6e6fb324d80a8efdfe573c0f4b
parent6ebdbe8df31e4abbc1466f827c9207339522d9f5 (diff)
downloadrockbox-195b9d3630432fc3943ac7e1c08b3b859866f11e.tar.gz
rockbox-195b9d3630432fc3943ac7e1c08b3b859866f11e.zip
Bagder in version 1.81 of plugin.h: "fprintf() is now fdprintf()" so time to put it in here too :)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6548 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--docs/PLUGIN_API2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/PLUGIN_API b/docs/PLUGIN_API
index 634100212d..e24d70fece 100644
--- a/docs/PLUGIN_API
+++ b/docs/PLUGIN_API
@@ -343,7 +343,7 @@ Files
Returns size of a file. Upon error, returns -1.
- int fprintf(int fd, const char *fmt, ...);
+ int fdprintf(int fd, const char *fmt, ...);
Write a formated string in the fd.
Returns the number of characters writen to file.