From 7e5536832b22036a634a74e16073b4762a416e29 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Wed, 21 Jul 2021 13:26:37 +0200 Subject: Reduce variable scope where possible --- libcrystfel/src/image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libcrystfel/src/image.c') diff --git a/libcrystfel/src/image.c b/libcrystfel/src/image.c index 3c5af479..9fc647ab 100644 --- a/libcrystfel/src/image.c +++ b/libcrystfel/src/image.c @@ -1140,7 +1140,6 @@ static int create_satmap(struct image *image, * but it isn't this one. Therefore make a fake * saturation map */ - long int j; int p_w, p_h; p_w = p->orig_max_fs - p->orig_min_fs + 1; @@ -1149,6 +1148,7 @@ static int create_satmap(struct image *image, image->sat[i] = malloc(p_w*p_h*sizeof(float)); if ( image->sat[i] != NULL ) { + long int j; for ( j=0; jsat[i][j] = INFINITY; } -- cgit v1.2.3