Open GeorgeKT opened 1 year ago
Turned on -Werror for compiling OCAMicro and discovered this problem in OcaLiteMediaSinkConnector.h:
/** * Set the alignment gain * * @param[in] alginmentGain The alignment gain. */ void SetAlginmentGain(::OcaDB alignmentGain) { alignmentGain = m_alignmentGain; }
It should obviously be m_alignmentGain = alignmentGain There is also a typo in the function name.
Turned on -Werror for compiling OCAMicro and discovered this problem in OcaLiteMediaSinkConnector.h:
It should obviously be m_alignmentGain = alignmentGain There is also a typo in the function name.