This commit is contained in:
Chris Fernald 2026-08-27 07:46:48 +09:00 committed by GitHub
commit 0bc8cc4b91
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -181,7 +181,7 @@ DumpUicCmdExecResult (
DEBUG ((DEBUG_VERBOSE, "UIC configuration command fails - DME_FAILURE\n"));
break;
default:
ASSERT (FALSE);
DEBUG ((DEBUG_VERBOSE, "UIC configuration command fails - UNKNOWN_ERROR (0x%02x)\n", Result));
break;
}
} else {
@ -192,7 +192,7 @@ DumpUicCmdExecResult (
DEBUG ((DEBUG_VERBOSE, "UIC control command fails - FAILURE\n"));
break;
default:
ASSERT (FALSE);
DEBUG ((DEBUG_VERBOSE, "UIC control command fails - UNKNOWN_ERROR (0x%02x)\n", Result));
break;
}
}
@ -241,7 +241,7 @@ DumpQueryResponseResult (
DEBUG ((DEBUG_VERBOSE, "Query Response with General Failure\n"));
break;
default:
ASSERT (FALSE);
DEBUG ((DEBUG_VERBOSE, "Query Response with Unknown Error (0x%02x)\n", Result));
break;
}
}