Fix "missing return" compiler warnings

This commit is contained in:
Marcos Vives Del Sol 2015-02-21 23:04:06 +01:00
parent b6a8745838
commit 9d82d598f0

View file

@ -1307,6 +1307,8 @@ str_nfc_baud_rate(const nfc_baud_rate nbr)
case NBR_847:
return "847 kbps";
}
return "???";
}
/** @ingroup string-converter
@ -1335,6 +1337,8 @@ str_nfc_modulation_type(const nfc_modulation_type nmt)
case NMT_DEP:
return "D.E.P.";
}
return "???";
}
/** @ingroup string-converter