hikptool/0061-hikptool-Update-the-tool-version-number-to-1.1.1.patch

29 lines
800 B
Diff
Raw Permalink Normal View History

From 1354eaf629ac399a4f0789a0cdc460a4293ec905 Mon Sep 17 00:00:00 2001
From: veega2022 <zhuweijia@huawei.com>
Date: Tue, 23 Apr 2024 21:45:02 +0800
Subject: [PATCH] hikptool: Update the tool version number to 1.1.1
Update the tool version number to 1.1.1
Signed-off-by: veega2022 <zhuweijia@huawei.com>
---
tool_lib/tool_lib.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tool_lib/tool_lib.h b/tool_lib/tool_lib.h
index 14b3db5..72a99c6 100644
--- a/tool_lib/tool_lib.h
+++ b/tool_lib/tool_lib.h
@@ -18,7 +18,7 @@
#define TOOL_NAME "hikptool"
-#define TOOL_VER "1.1.0"
+#define TOOL_VER "1.1.1"
#define HI_GET_BITFIELD(value, start, mask) (((value) >> (start)) & (mask))
#define HI_SET_FIELD(origin, shift, val) ((origin) |= (val) << (shift))
--
2.42.0.windows.2