From: Andre Noll Date: Wed, 14 Mar 2012 13:41:50 +0000 (+0100) Subject: doc: Avoid \0 in comments. X-Git-Tag: v0.4.10~7 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=116e13e124d7e080cd4b4ca0edd805a743ccff43 doc: Avoid \0 in comments. Doxygen treats \0 as a command, spits out a warning and produces no output. --- diff --git a/string.c b/string.c index a1f2a43c..aa3bcbdd 100644 --- a/string.c +++ b/string.c @@ -128,7 +128,8 @@ __must_check __malloc char *para_strdup(const char *s) * function calls exit() if insufficient memory is available, while vasprintf() * returns -1 in this case. * - * \return Number of bytes written, not including the terminating '\0'. + * \return Number of bytes written, not including the terminating \p NULL + * character. * * \sa printf(3), vsnprintf(3), va_start(3), vasprintf(3), \ref xasprintf(). */