From f687c3734666d33ed92885237025a87fb4c3ec68 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Mon, 25 Aug 2014 10:17:50 +0200 Subject: m doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/libmdsserver/macros.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/libmdsserver/macros.h b/src/libmdsserver/macros.h index 255accd..aadf7b5 100644 --- a/src/libmdsserver/macros.h +++ b/src/libmdsserver/macros.h @@ -53,8 +53,8 @@ * Wrapper for `fprintf` that prints to `stderr` with * the program name prefixed and new line suffixed * - * @param format:char* The format - * @return :int The number of bytes written, including the NUL-termination, negative on error + * @param format:const char* The format + * @return :int The number of bytes written, including the NUL-termination, negative on error */ #define eprint(format) \ fprintf(stderr, "%s: " format "\n", *argv) @@ -64,9 +64,9 @@ * Wrapper for `fprintf` that prints to `stderr` with * the program name prefixed and new line suffixed * - * @param format:char* The format - * @param ... The arguments - * @return :int The number of bytes written, including the NUL-termination, negative on error + * @param format:const char* The format + * @param ... The arguments + * @return :int The number of bytes written, including the NUL-termination, negative on error */ #define eprintf(format, ...) \ fprintf(stderr, "%s: " format "\n", *argv, __VA_ARGS__) -- cgit v1.2.3-70-g09d2