通用规范告警修改

Signed-off-by: fangyunzhong <fangyunzhong2@huawei.com>
This commit is contained in:
fangyunzhong
2023-05-17 11:31:18 +00:00
parent c2b853e8d7
commit da4b82dc17
+1 -1
View File
@@ -370,7 +370,7 @@ string ResourceUtil::DecToHexStr(const int32_t i)
{
stringstream ot;
string result;
ot << setiosflags(ios::uppercase) << "0x" << hex << setw(8) << setfill('0') << i;// 0x expadding 8 bit
ot << setiosflags(ios::uppercase) << "0x" << hex << setw(8) << setfill('0') << i; // 0x expadding 8 bit
ot >> result;
return result;
}