Mercurial > geeqie
diff src/histogram.h @ 609:b690cecbf5b8
Use function(void) instead of function() for declaring functions which
do not take any parameters at all.
It respects current Geeqie coding style more.
| author | zas_ |
|---|---|
| date | Fri, 09 May 2008 07:32:30 +0000 |
| parents | 48c8e49b571c |
| children | 1646720364cf |
line wrap: on
line diff
--- a/src/histogram.h Thu May 08 22:59:14 2008 +0000 +++ b/src/histogram.h Fri May 09 07:32:30 2008 +0000 @@ -23,7 +23,7 @@ #define HCHAN_COUNT (HCHAN_MAX+1) -Histogram *histogram_new(); +Histogram *histogram_new(void); void histogram_free(Histogram *histogram); gint histogram_set_channel(Histogram *histogram, gint chan); gint histogram_get_channel(Histogram *histogram);
