aboutsummaryrefslogtreecommitdiff
path: root/src/GtkGif.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/GtkGif.cpp')
-rw-r--r--src/GtkGif.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/GtkGif.cpp b/src/GtkGif.cpp
index 76a6ebe..dc5cc53 100644
--- a/src/GtkGif.cpp
+++ b/src/GtkGif.cpp
@@ -18,7 +18,7 @@ namespace dchat
{
unsigned char *pixels = surface->get_data();
surface->flush();
- char *p = (char*)textureData;
+ unsigned char *p = (unsigned char*)textureData;
// TODO: Optimize this
for(int i = 0; i < surface->get_stride() * surface->get_height(); i += 4)
{
@@ -48,4 +48,4 @@ namespace dchat
cairo->set_source(surface, 0.0, 0.0);
cairo->mask(surface, 0.0, 0.0);
}
-} \ No newline at end of file
+}