Fix "missing return" compiler warnings
This commit is contained in:
parent
b6a8745838
commit
9d82d598f0
1 changed files with 4 additions and 0 deletions
|
@ -1307,6 +1307,8 @@ str_nfc_baud_rate(const nfc_baud_rate nbr)
|
||||||
case NBR_847:
|
case NBR_847:
|
||||||
return "847 kbps";
|
return "847 kbps";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return "???";
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @ingroup string-converter
|
/** @ingroup string-converter
|
||||||
|
@ -1335,6 +1337,8 @@ str_nfc_modulation_type(const nfc_modulation_type nmt)
|
||||||
case NMT_DEP:
|
case NMT_DEP:
|
||||||
return "D.E.P.";
|
return "D.E.P.";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return "???";
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @ingroup string-converter
|
/** @ingroup string-converter
|
||||||
|
|
Loading…
Reference in a new issue