|
From: <kin...@us...> - 2023-08-05 12:10:00
|
Revision: 7151
http://sourceforge.net/p/teem/code/7151
Author: kindlmann
Date: 2023-08-05 12:09:58 +0000 (Sat, 05 Aug 2023)
Log Message:
-----------
variable rename to reflect what is described in the comment
Modified Paths:
--------------
teem/trunk/src/unrrdu/uncmt.c
Modified: teem/trunk/src/unrrdu/uncmt.c
===================================================================
--- teem/trunk/src/unrrdu/uncmt.c 2023-08-04 18:34:16 UTC (rev 7150)
+++ teem/trunk/src/unrrdu/uncmt.c 2023-08-05 12:09:58 UTC (rev 7151)
@@ -58,10 +58,10 @@
state is maintained by the floatCount and doubleCount variables
passed by reference */
int
-nfdsChar(unsigned int *pfc, unsigned int *pdc, int ci) {
+nfdsChar(unsigned int *floatCountP, unsigned int *doubleCountP, int ci) {
int co = ci; /* by default, output == input */
- unsigned int fc = *pfc;
- unsigned int dc = *pdc;
+ unsigned int fc = *floatCountP;
+ unsigned int dc = *doubleCountP;
switch (ci) {
case 'f':
@@ -108,8 +108,8 @@
dc = 5;
}
- *pfc = fc;
- *pdc = dc;
+ *floatCountP = fc;
+ *doubleCountP = dc;
return co;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|