diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2010-10-06 20:03:57 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2010-10-06 20:03:57 +0400 |
commit | 6b306ab8752befc28d259be55495f8249cc2df24 (patch) | |
tree | 0fa3d471aef61925563709e0f8ee5667b57c7a9d /src/images.h | |
parent | 8d0053734fb5a4ccd8c3bda731e6b7c8261c6f67 (diff) | |
download | rspamd-6b306ab8752befc28d259be55495f8249cc2df24.tar.gz rspamd-6b306ab8752befc28d259be55495f8249cc2df24.zip |
Fixes types (use glib ones) no functional change.
Now all comments in commit logs beginning with '*' would be included in changelog, so
important changes would be separated from small ones.
Diffstat (limited to 'src/images.h')
-rw-r--r-- | src/images.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/images.h b/src/images.h index f7616a680..b807ab24d 100644 --- a/src/images.h +++ b/src/images.h @@ -17,10 +17,10 @@ struct rspamd_image { GByteArray *data; guint32 width; guint32 height; - const char *filename; + const gchar *filename; }; void process_images (struct worker_task *task); -const char *image_type_str (enum known_image_types type); +const gchar *image_type_str (enum known_image_types type); #endif /* IMAGES_H_ */ |