graphics/NxWidgets/nxwm/src/ccalibration.cxx: Correct and error in the type of the return value.

This commit is contained in:
Gregory Nutt 2019-01-27 17:22:13 -06:00
parent b1352458ab
commit 902c3fa552

View File

@ -590,7 +590,7 @@ FAR void *CCalibration::calibration(FAR void *arg)
if (!This->createWidgets()) if (!This->createWidgets())
{ {
gerr("ERROR: failed to create widgets\n"); gerr("ERROR: failed to create widgets\n");
return false; return (FAR void *)0;
} }
// No samples have yet been collected // No samples have yet been collected