Remove "incompatible pointer" warning

This commit is contained in:
Holger Vogt 2021-01-26 18:18:28 +01:00
parent 8de513e8e9
commit ca26364a7a
2 changed files with 2 additions and 2 deletions

View File

@ -749,7 +749,7 @@ OUTpData(runDesc *plotPtr, IFvalue *refValue, IFvalue *valuePtr)
int OUTwReference(void *plotPtr, IFvalue *valuePtr, void **refPtr)
int OUTwReference(runDesc*plotPtr, IFvalue *valuePtr, void **refPtr)
{
NG_IGNORE(refPtr);
NG_IGNORE(valuePtr);

View File

@ -55,7 +55,7 @@ int OUTwBeginPlot(CKTcircuit *circuitPtr, JOB *analysisPtr,
IFuid refName, int refType,
int numNames, IFuid *dataNames, int dataType, runDesc **plotPtr);
int OUTpData(runDesc *plotPtr, IFvalue *refValue, IFvalue *valuePtr);
int OUTwReference(void *plotPtr, IFvalue *valuePtr, void **refPtr);
int OUTwReference(runDesc *plotPtr, IFvalue *valuePtr, void **refPtr);
int OUTwData(runDesc *plotPtr, int dataIndex, IFvalue *valuePtr, void *refPtr);
int OUTwEnd(runDesc *plotPtr);
int OUTendPlot(runDesc *plotPtr);