|
From: <kin...@us...> - 2023-07-08 12:18:21
|
Revision: 7056
http://sourceforge.net/p/teem/code/7056
Author: kindlmann
Date: 2023-07-08 12:18:19 +0000 (Sat, 08 Jul 2023)
Log Message:
-----------
fixing sloppy propgation of AIR_STRLEN --> AIR_STRLEN+1
Modified Paths:
--------------
teem/trunk/src/unrrdu/resample.c
Modified: teem/trunk/src/unrrdu/resample.c
===================================================================
--- teem/trunk/src/unrrdu/resample.c 2023-07-08 12:03:12 UTC (rev 7055)
+++ teem/trunk/src/unrrdu/resample.c 2023-07-08 12:18:19 UTC (rev 7056)
@@ -310,7 +310,7 @@
}
if (!E) E |= nrrdResampleKernelSet(rsmc, ai, unuk->kernel, unuk->parm);
switch (dowhat) {
- char stmp[AIR_STRLEN_SMALL] + 1;
+ char stmp[AIR_STRLEN_SMALL + 1];
case unrrduScaleMultiply:
samplesOut = AIR_ROUNDUP_UI(nin->axis[ai].size * scale[1 + 2 * ai]);
break;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|