summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2006-11-19 09:33:50 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2006-11-19 09:33:50 +0000
commita99cfb0d0e09ee74404ed97510763c9d6387b41e (patch)
tree955d466539830b161a6995cd3586382bc1aa69b8
parent322af4bed5f49e6efe2a39a04091ad40aa841c1a (diff)
Fix typo in comment
Originally committed as revision 7123 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavutil/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/common.h b/libavutil/common.h
index 0dbebfb8d2..9d4ea9565f 100644
--- a/libavutil/common.h
+++ b/libavutil/common.h
@@ -308,7 +308,7 @@ static inline int ff_get_fourcc(const char *s){
* ucs-4 character and should be a left value.
* \param GET_BYTE gets utf-8 encoded bytes from any proper source. It can be
* a function or a statement whose return value or evaluated value is of type
- * uint8_t. It will be execuded up to 4 times.
+ * uint8_t. It will be executed up to 4 times.
* \param ERROR action that should be taken when an invalid utf-8 byte is returned
* from GET_BYTE. It should be a statement that jumps out of the macro,
* like exit(), goto, return, break, or continue.