Cast to guint8* to avoid a compiler warning.
2008-06-21 Johan Dahlin <jdahlin@async.com.br> * gtk/gtkiconcachevalidator.c (check_pixel_data): Cast to guint8* to avoid a compiler warning. svn path=/trunk/; revision=20665
This commit is contained in:

committed by
Johan Dahlin

parent
33d64796d0
commit
a1362779ee
@ -1,3 +1,8 @@
|
|||||||
|
2008-06-21 Johan Dahlin <jdahlin@async.com.br>
|
||||||
|
|
||||||
|
* gtk/gtkiconcachevalidator.c (check_pixel_data): Cast to guint8* to avoid
|
||||||
|
a compiler warning.
|
||||||
|
|
||||||
2008-06-21 Michael Natterer <mitch@imendio.com>
|
2008-06-21 Michael Natterer <mitch@imendio.com>
|
||||||
|
|
||||||
* gdk/gdkapplaunchcontext.h: remove redundant include, fix
|
* gdk/gdkapplaunchcontext.h: remove redundant include, fix
|
||||||
|
@ -166,7 +166,7 @@ check_pixel_data (CacheInfo *info,
|
|||||||
GdkPixdata data;
|
GdkPixdata data;
|
||||||
|
|
||||||
check ("pixel data", gdk_pixdata_deserialize (&data, length,
|
check ("pixel data", gdk_pixdata_deserialize (&data, length,
|
||||||
info->cache + offset + 8,
|
(const guint8*)info->cache + offset + 8,
|
||||||
NULL));
|
NULL));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user