changeset 8656:82e448c3a478

10l (int i)
author michael
date Mon, 30 Dec 2002 12:36:28 +0000
parents f8e53f8cb8b2
children 37b083f196d7
files postproc/postprocess_template.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/postproc/postprocess_template.c	Mon Dec 30 08:59:33 2002 +0000
+++ b/postproc/postprocess_template.c	Mon Dec 30 12:36:28 2002 +0000
@@ -2075,7 +2075,7 @@
 #endif
 //static int test=0;
 
-static void inline RENAME(tempNoiseReducer)(uint8_t *src, int stride,
+static inline void RENAME(tempNoiseReducer)(uint8_t *src, int stride,
 				    uint8_t *tempBlured, uint32_t *tempBluredPast, int *maxNoise)
 {
 	// to save a register (FIXME do this outside of the loops)
@@ -2828,6 +2828,7 @@
 			memcpy(dst, tempDst + 9*dstStride, copyAhead*dstStride);
 		else
 		{
+			int i;
 			for(i=0; i<copyAhead; i++)
 			{
 				memcpy(dst + i*dstStride, tempDst + (9+i)*dstStride, width);