Skip to content

Commit

Permalink
Change variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOnlyZac authored Oct 17, 2024
1 parent ddb68fe commit 945d3e8
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/P2/find.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ LO * PloFindSwObject(SW *psw, int grffso, OID oid, LO *ploContext) {
}

LO * PloFindSwNearest(SW *psw, OID oid, LO *ploContext) {
LO *value1[4];
value1[0] = 0;
CploFindSwObjects(psw, FSO_ReturnActualCount | FSO_FindNearest, oid, ploContext, 1, value1);
return value1[0];
LO *aplo[4];
aplo[0] = 0;
CploFindSwObjects(psw, FSO_ReturnActualCount | FSO_FindNearest, oid, ploContext, 1, aplo);
return aplo[0];
}

LO * PloFindSwChild(SW *psw, OID oid, ALO *paloAncestor) {
LO *value1[4];
value1[0] = 0;
CploFindSwObjects(psw, FSO_ReturnActualCount | FSO_FindChild, oid, paloAncestor, 1, value1);
return value1[0];
LO *aplo[4];
aplo[0] = 0;
CploFindSwObjects(psw, FSO_ReturnActualCount | FSO_FindChild, oid, paloAncestor, 1, aplo);
return aplo[0];
}

int FIsCidDerivedFrom(CID cid, CID cidAncestor) {
Expand Down

0 comments on commit 945d3e8

Please sign in to comment.