summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/fifo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/fifo.h b/libavutil/fifo.h
index 961463a2a4..f106239304 100644
--- a/libavutil/fifo.h
+++ b/libavutil/fifo.h
@@ -111,7 +111,7 @@ void av_fifo_drain(AVFifoBuffer *f, int size);
* Return a pointer to the data stored in a FIFO buffer at a certain offset.
* The FIFO buffer is not modified.
*
- * @param *f AVFifoBuffer to peek at, f must be non-NULL
+ * @param f AVFifoBuffer to peek at, f must be non-NULL
* @param offs an offset in bytes, its absolute value must be less
* than the used buffer size or the returned pointer will
* point outside to the buffer data.