Mercurial > geeqie.yaz
diff src/histogram.c @ 287:fd5c62403498
int -> gint
| author | zas_ |
|---|---|
| date | Tue, 08 Apr 2008 23:41:01 +0000 |
| parents | 84c4618cd1cb |
| children | 4bbde8a38ad4 |
line wrap: on
line diff
--- a/src/histogram.c Tue Apr 08 23:39:27 2008 +0000 +++ b/src/histogram.c Tue Apr 08 23:41:01 2008 +0000 @@ -133,7 +133,7 @@ } -int histogram_draw(Histogram *histogram, GdkPixbuf *pixbuf, gint x, gint y, gint width, gint height) +gint histogram_draw(Histogram *histogram, GdkPixbuf *pixbuf, gint x, gint y, gint width, gint height) { /* FIXME: use the coordinates correctly */ gint i; @@ -143,7 +143,7 @@ if (!histogram) return 0; for (i=0; i<1024; i++) { - int flag = 0; + gint flag = 0; switch (histogram->histogram_chan) {
