diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2005-10-19 10:57:46 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2005-10-19 10:57:46 +0000 |
commit | 97f39d46478583613258d50acdc209e5c489a969 (patch) | |
tree | 1da846391b959f0a4ac37ccd5b15ebe6b81c0f0d /gst/goom/lines.c | |
parent | 6142c0c1472f79e25daa85906948a27e46dd5b86 (diff) |
gst/goom/: Make inline functions either 'static inline' or 'extern inline', otherwise the Forte compiler apparently w...
Original commit message from CVS:
* gst/goom/filters.c:
* gst/goom/graphic.h:
* gst/goom/lines.c:
Make inline functions either 'static inline' or 'extern inline',
otherwise the Forte compiler apparently won't inline them (#317300).
Diffstat (limited to 'gst/goom/lines.c')
-rw-r--r-- | gst/goom/lines.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/goom/lines.c b/gst/goom/lines.c index e497b5eb3..0ff6ae20e 100644 --- a/gst/goom/lines.c +++ b/gst/goom/lines.c @@ -16,7 +16,7 @@ extern unsigned int resolx, resoly; -inline unsigned char +static inline unsigned char lighten (unsigned char value, unsigned char power) { unsigned char i; |