summaryrefslogtreecommitdiff
path: root/libavformat/internal.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-07-03 16:33:25 +0200
committerDiego Biurrun <diego@biurrun.de>2011-07-03 21:44:04 +0200
commitc81a2b9b4f5488c831dc27635152394ab632c46a (patch)
tree5761cc6daaaeb9e3f152d3aaa35d77258270d199 /libavformat/internal.h
parent82494cad9db1f32f13b6643b7dce15f2688e3f27 (diff)
doxygen: Escape '\' in Doxygen documentation.
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r--libavformat/internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h
index 30faa00e95..aba890def4 100644
--- a/libavformat/internal.h
+++ b/libavformat/internal.h
@@ -157,14 +157,14 @@ void ff_put_v(AVIOContext *bc, uint64_t val);
/**
* Read a whole line of text from AVIOContext. Stop reading after reaching
- * either a \n, a \0 or EOF. The returned string is always \0 terminated,
+ * either a \\n, a \\0 or EOF. The returned string is always \\0-terminated,
* and may be truncated if the buffer is too small.
*
* @param s the read-only AVIOContext
* @param buf buffer to store the read line
* @param maxlen size of the buffer
* @return the length of the string written in the buffer, not including the
- * final \0
+ * final \\0
*/
int ff_get_line(AVIOContext *s, char *buf, int maxlen);