Changeset 42389 for trunk/Ohana/src/opihi/dvo/coordmosaic.c
- Timestamp:
- Feb 8, 2023, 12:17:35 PM (3 years ago)
- Location:
- trunk/Ohana
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/opihi/dvo/coordmosaic.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana
-
trunk/Ohana/src/opihi/dvo/coordmosaic.c
r39233 r42389 311 311 312 312 memset (segment, 0, 16); memcpy (segment, &SEGMENT[i*Nsegment], 4); 313 snprintf (name, 16, "%s_L_CX%dY%d", segment, XORDER[i], YORDER[i]);313 snprintf_nowarn (name, 16, "%s_L_CX%dY%d", segment, XORDER[i], YORDER[i]); 314 314 double xvalue = get_double_variable (name, &found); 315 315 xmask = !found; 316 316 317 317 memset (segment, 0, 16); memcpy (segment, &SEGMENT[i*Nsegment], 4); 318 snprintf (name, 16, "%s_M_CX%dY%d", segment, XORDER[i], YORDER[i]);318 snprintf_nowarn (name, 16, "%s_M_CX%dY%d", segment, XORDER[i], YORDER[i]); 319 319 double yvalue = get_double_variable (name, &found); 320 320 ymask = !found; … … 437 437 438 438 int found, xmask, ymask; 439 snprintf (name, 16, "L_X%dY%d", ix, iy);439 snprintf_nowarn (name, 16, "L_X%dY%d", ix, iy); 440 440 double xvalue = get_double_variable (name, &found); 441 441 xmask = !found; 442 442 443 snprintf (name, 16, "M_X%dY%d", ix, iy);443 snprintf_nowarn (name, 16, "M_X%dY%d", ix, iy); 444 444 double yvalue = get_double_variable (name, &found); 445 445 ymask = !found;
Note:
See TracChangeset
for help on using the changeset viewer.
