fix(*): null ptr warning.
This commit is contained in:
parent
438fa5ede5
commit
92e973f563
|
@ -528,8 +528,8 @@ bool pu_control_range(
|
||||||
if (min) *min = static_cast<int>(minVal);
|
if (min) *min = static_cast<int>(minVal);
|
||||||
if (max) *max = static_cast<int>(maxVal);
|
if (max) *max = static_cast<int>(maxVal);
|
||||||
if (def) *def = static_cast<int>(defVal);
|
if (def) *def = static_cast<int>(defVal);
|
||||||
VLOG_INFO << __func__ << " " << option <<
|
// VLOG_INFO << __func__ << " " << option <<
|
||||||
": min=" << *min << ", max=" << *max << ", def=" << *def;
|
// ": min=" << *min << ", max=" << *max << ", def=" << *def;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user