diff options
author | Darin Adler <darin@src.gnome.org> | 2000-02-14 20:51:51 +0000 |
---|---|---|
committer | Darin Adler <darin@src.gnome.org> | 2000-02-14 20:51:51 +0000 |
commit | 97f2c2b7bb200e30733d1112277f1e9f5ad07de9 (patch) | |
tree | b61f6078b76d4620b6d8446cee88a509be7d335c /demos | |
parent | 9bf3a0be0cc3a41cf3f1f3d7f09692683dde22b3 (diff) | |
download | gtk+-97f2c2b7bb200e30733d1112277f1e9f5ad07de9.tar.gz |
Remove now-unnecessary cast.
Diffstat (limited to 'demos')
-rw-r--r-- | demos/testpixbuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/testpixbuf.c b/demos/testpixbuf.c index a5bc78774b..423d7d3308 100644 --- a/demos/testpixbuf.c +++ b/demos/testpixbuf.c @@ -529,7 +529,7 @@ main (int argc, char **argv) if (argc == 1) { const gchar*** xpmp; - pixbuf = gdk_pixbuf_new_from_data ((guchar *) default_image, ART_PIX_RGB, FALSE, + pixbuf = gdk_pixbuf_new_from_data (default_image, ART_PIX_RGB, FALSE, DEFAULT_WIDTH, DEFAULT_HEIGHT, DEFAULT_WIDTH * 3, NULL, NULL); new_testrgb_window (pixbuf, NULL); |