ResReadSim.c: warning: this 'if' clause does not guard...
break keyword indention corrected, braces added to better convey code intention of multiline statement. GCC14 -Wall cleanup series [-Wmisleading-indentation]
This commit is contained in:
parent
967b41343b
commit
0cde303563
|
|
@ -178,9 +178,11 @@ ResReadSim(simfile, fetproc, capproc, resproc, attrproc, mergeproc, subproc)
|
|||
break;
|
||||
case 'A':
|
||||
if (attrproc)
|
||||
{
|
||||
result = (*attrproc)(line[ATTRIBUTENODENAME],
|
||||
line[ATTRIBUTEVALUE], simfile, &extfile);
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case 'x':
|
||||
fettype = DBNumTypes;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in New Issue