summaryrefslogtreecommitdiff
path: root/src/themes/standard/theme.c
diff options
context:
space:
mode:
authorinfirit <[email protected]>2015-07-24 15:53:19 +0200
committerinfirit <[email protected]>2015-07-24 15:57:29 +0200
commitb9f955af51146ae361478fc6d06315ca2c62e99f (patch)
treee713ebab9cd31d41418f549707aefaacf1e8396a /src/themes/standard/theme.c
parent147aa51092a2615339a9adf9e1626cfb7bb3a97f (diff)
downloadmate-notification-daemon-b9f955af51146ae361478fc6d06315ca2c62e99f.tar.bz2
mate-notification-daemon-b9f955af51146ae361478fc6d06315ca2c62e99f.tar.xz
Fix comparison between unsigned and signed int
Diffstat (limited to 'src/themes/standard/theme.c')
-rw-r--r--src/themes/standard/theme.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/themes/standard/theme.c b/src/themes/standard/theme.c
index 9c012a9..c7dea12 100644
--- a/src/themes/standard/theme.c
+++ b/src/themes/standard/theme.c
@@ -446,7 +446,7 @@ static void draw_border(GtkWidget* widget, WindowData *windata, cairo_t* cr)
if (windata->has_arrow)
{
- int i;
+ size_t i;
create_border_with_arrow(windata->win, windata);