diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-01-08 23:07:55 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-01-08 23:07:55 +0000 |
commit | 4514a1d544984edd983583f2f6e971b7b300d2bf (patch) | |
tree | 29688d95d910867e727dba01ae930a93567e256e /vhook/imlib2.c | |
parent | 6da7cc818584fda94195859a7edbef20adc34790 (diff) | |
download | ffmpeg-4514a1d544984edd983583f2f6e971b7b300d2bf.tar.gz |
Fix illegal identifiers, names starting with _ and uppercase are reserved.
Originally committed as revision 11476 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'vhook/imlib2.c')
-rw-r--r-- | vhook/imlib2.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vhook/imlib2.c b/vhook/imlib2.c index b85dc87493..1626f587d4 100644 --- a/vhook/imlib2.c +++ b/vhook/imlib2.c @@ -86,7 +86,7 @@ typedef struct { int eval_colors; double x, y; char *fileImage; - struct _CachedImage *cache; + struct CachedImage *cache; Imlib_Image imageOverlaid; AVEvalExpr *eval_x, *eval_y; char *expr_x, *expr_y; @@ -99,8 +99,8 @@ typedef struct { struct SwsContext *fromRGB_convert_ctx; } ContextInfo; -typedef struct _CachedImage { - struct _CachedImage *next; +typedef struct CachedImage { + struct CachedImage *next; Imlib_Image image; int width; int height; |