We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2af12f commit e6ca7c9Copy full SHA for e6ca7c9
1 file changed
tss-esapi/src/constants/return_code/layer.rs
@@ -33,7 +33,7 @@ impl TryFrom<u8> for ReturnCodeLayer {
33
34
fn try_from(value: u8) -> Result<Self> {
35
ReturnCodeLayer::from_u8(value).ok_or_else(|| {
36
- error!("{:#02X} is not valid ReturnCodeLayer", value);
+ error!("{:#X} is not valid ReturnCodeLayer", value);
37
Error::local_error(WrapperErrorKind::InvalidParam)
38
})
39
}
0 commit comments