diff options
author | Dave Yeo <daveryeo@telus.net> | 2008-03-15 12:28:35 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2008-03-15 12:28:35 +0000 |
commit | b96644bfe36a1c9a2354fda63987e5d282cab2f5 (patch) | |
tree | abbfa68c7e70dbc920c0d3d4c7721f82154c7ba5 | |
parent | 69b192acb8311951adf603259539ed3ceaccbe50 (diff) | |
download | ffmpeg-b96644bfe36a1c9a2354fda63987e5d282cab2f5.tar.gz |
Add attribute_align_arg to os2thread.c.
Patch by Dave Yeo.
Originally committed as revision 12447 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/os2thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/os2thread.c b/libavcodec/os2thread.c index 5c74a7d658..583f255ea0 100644 --- a/libavcodec/os2thread.c +++ b/libavcodec/os2thread.c @@ -39,7 +39,7 @@ typedef struct ThreadContext{ }ThreadContext; -void thread_func(void *v){ +void attribute_align_arg thread_func(void *v){ ThreadContext *c= v; for(;;){ |