From 23b348871266b9fcacffac4d120a8bae87925646 Mon Sep 17 00:00:00 2001 From: fangyunzhong Date: Wed, 17 May 2023 11:31:18 +0000 Subject: [PATCH] =?UTF-8?q?fixed=20da4b82d=20from=20https://gitee.com/fang?= =?UTF-8?q?-yunzhong/developtools=5Fglobal=5Fresource=5Ftool/pulls/98=20?= =?UTF-8?q?=E9=80=9A=E7=94=A8=E8=A7=84=E8=8C=83=E5=91=8A=E8=AD=A6=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: fangyunzhong --- src/resource_util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/resource_util.cpp b/src/resource_util.cpp index bb69a6e..0bb8a7d 100644 --- a/src/resource_util.cpp +++ b/src/resource_util.cpp @@ -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; }