diff options
author | Jorge Arellano Cid <devnull@localhost> | 2013-11-29 12:20:58 +0100 |
---|---|---|
committer | Jorge Arellano Cid <devnull@localhost> | 2013-11-29 12:20:58 +0100 |
commit | 740ff520243ed6e3154249dee01e27f3fa0a22d1 (patch) | |
tree | 61f5fb053050a141edd8ac1e91b14c217a79355e /src/image.hh | |
parent | 6849d366312901974812738e741f4007b5cff122 (diff) |
Use img_rndr instead of img_rnd to avoid associating "rnd" suffex with random.
Diffstat (limited to 'src/image.hh')
-rw-r--r-- | src/image.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/image.hh b/src/image.hh index 52bd1cf1..39fe0405 100644 --- a/src/image.hh +++ b/src/image.hh @@ -44,7 +44,7 @@ typedef enum { } ImageState; struct _DilloImage { - void *layout, *img_rnd; + void *layout, *img_rndr; /* Parameters as told by image data */ uint_t width; @@ -62,7 +62,7 @@ struct _DilloImage { /* * Function prototypes */ -DilloImage *a_Image_new(void *layout, void *img_rnd, int32_t bg_color); +DilloImage *a_Image_new(void *layout, void *img_rndr, int32_t bg_color); DilloImage *a_Image_new_with_dw(void *layout, const char *alt_text, int32_t bg_color); void *a_Image_get_dw(DilloImage *Image); |