summaryrefslogtreecommitdiff
path: root/libavutil/lfg.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-07-02 14:42:27 +0200
committerDiego Biurrun <diego@biurrun.de>2011-07-03 18:30:02 +0200
commitff993cd7fcdfeffcac10337c0c6b69c599060c2b (patch)
treedc4319bdfb6225de5a33695939057526549dc3b1 /libavutil/lfg.h
parent24c9babaaf458f943ed1ef74628d157ac29c5d5f (diff)
doxygen: Drop array size declarations from Doxygen parameter names.
Adding [] to a Doxygen parameter name clashes with Doxygen syntax.
Diffstat (limited to 'libavutil/lfg.h')
-rw-r--r--libavutil/lfg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/lfg.h b/libavutil/lfg.h
index 89a635a1b0..904d00a669 100644
--- a/libavutil/lfg.h
+++ b/libavutil/lfg.h
@@ -55,7 +55,7 @@ static inline unsigned int av_mlfg_get(AVLFG *c){
* Get the next two numbers generated by a Box-Muller Gaussian
* generator using the random numbers issued by lfg.
*
- * @param out[2] array where the two generated numbers are placed
+ * @param out array where the two generated numbers are placed
*/
void av_bmg_get(AVLFG *lfg, double out[2]);