Feature #283 ยป 0022-fc_cmdhelp.c-Replace-NULLs-with-nullptrs.patch
utility/fc_cmdhelp.c | ||
---|---|---|
const struct cmdarg *pcmdarg1 = *pp1;
|
||
int c0, c1;
|
||
if (pcmdarg0 == NULL) {
|
||
if (pcmdarg0 == nullptr) {
|
||
return -1;
|
||
}
|
||
if (pcmdarg1 == NULL) {
|
||
if (pcmdarg1 == nullptr) {
|
||
return 1;
|
||
}
|
||