summaryrefslogtreecommitdiffstats
path: root/src/core/vsprintf.c
diff options
context:
space:
mode:
authorMichael Brown2005-05-24 02:11:25 +0200
committerMichael Brown2005-05-24 02:11:25 +0200
commit0e494614b569e3e25ea11a5a5a08310f82de0911 (patch)
treefef576480462b7a8b259609d1915a91e1a6e520b /src/core/vsprintf.c
parentFixes for gcc >= 3.2 from Georg Baum (diff)
downloadipxe-0e494614b569e3e25ea11a5a5a08310f82de0911.tar.gz
ipxe-0e494614b569e3e25ea11a5a5a08310f82de0911.tar.xz
ipxe-0e494614b569e3e25ea11a5a5a08310f82de0911.zip
Some versions of doxygen seem to object to "@ret None" or similar.
Diffstat (limited to 'src/core/vsprintf.c')
-rw-r--r--src/core/vsprintf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/vsprintf.c b/src/core/vsprintf.c
index 520b1feb..fda0e96c 100644
--- a/src/core/vsprintf.c
+++ b/src/core/vsprintf.c
@@ -20,7 +20,7 @@
* @v args Arguments corresponding to the format string
* @ret len Length of string written to buffer (if buf != NULL)
* @ret 0 (if buf == NULL)
- * @err None
+ * @err None -
*
* If #buf==NULL, then the string will be written to the console
* directly using putchar().
@@ -157,7 +157,7 @@ static int vsprintf(char *buf, const char *fmt, va_list args)
* @v ... Arguments corresponding to the format string
* @ret len Length of string written to buffer (if buf != NULL)
* @ret 0 (if buf == NULL)
- * @err None
+ * @err None -
*
* If #buf==NULL, then the string will be written to the console
* directly using putchar().
@@ -178,8 +178,8 @@ int sprintf(char *buf, const char *fmt, ...)
*
* @v fmt Format string
* @v ... Arguments corresponding to the format string
- * @ret None
- * @err None
+ * @ret None -
+ * @err None -
*
*/
void printf(const char *fmt, ...)