summaryrefslogtreecommitdiff
path: root/libbackground
diff options
context:
space:
mode:
authorAnders Carlsson <andersca@src.gnome.org>2002-03-20 14:31:58 +0000
committerAnders Carlsson <andersca@src.gnome.org>2002-03-20 14:31:58 +0000
commit6b0ec1bccc84f444278df0b4c486048af0e48442 (patch)
treeb866c7973cbe1ddae3620d628bbad561565e7c4b /libbackground
parent099d2ec80043d081549c11eb6810c986da1545e0 (diff)
downloadgnome-control-center-6b0ec1bccc84f444278df0b4c486048af0e48442.tar.gz
Warning fixes.NAUTILUS_1_1_11
Diffstat (limited to 'libbackground')
-rw-r--r--libbackground/preview-file-selection.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbackground/preview-file-selection.c b/libbackground/preview-file-selection.c
index c6661c61f..720c8b790 100644
--- a/libbackground/preview-file-selection.c
+++ b/libbackground/preview-file-selection.c
@@ -132,8 +132,8 @@ preview_file_selection_intelligent_scale (GdkPixbuf *buf, guint scale)
{
GdkPixbuf *scaled;
int w, h;
- int ow = gdk_pixbuf_get_width (buf);
- int oh = gdk_pixbuf_get_height (buf);
+ guint ow = gdk_pixbuf_get_width (buf);
+ guint oh = gdk_pixbuf_get_height (buf);
if (ow <= scale && oh <= scale)
scaled = gdk_pixbuf_ref (buf);