diff options
Diffstat (limited to 'src/peaks.c')
-rw-r--r-- | src/peaks.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/peaks.c b/src/peaks.c index 5f0a8a27..383f4663 100644 --- a/src/peaks.c +++ b/src/peaks.c @@ -169,9 +169,9 @@ static int cull_peaks(struct image *image) /* Returns non-zero if peak has been vetoed. * i.e. don't use result if return value is not zero. */ -static int integrate_peak(struct image *image, int xp, int yp, - float *xc, float *yc, float *intensity, - int do_polar, int do_sa) +int integrate_peak(struct image *image, int xp, int yp, + float *xc, float *yc, float *intensity, + int do_polar, int do_sa) { signed int x, y; const int lim = INTEGRATION_RADIUS * INTEGRATION_RADIUS; |