From c4d26102f79124f95803fd64dc01e9f0883b4c9c Mon Sep 17 00:00:00 2001 From: Peter Rajnoha Date: Wed, 12 Jun 2024 10:05:45 +0200 Subject: [PATCH] res: ucmd-module: remove superfluous leading 0 for SID_KV_FL_RS flag --- src/include/resource/ucmd-module.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/resource/ucmd-module.h b/src/include/resource/ucmd-module.h index ca6c7cd2..cedc056e 100644 --- a/src/include/resource/ucmd-module.h +++ b/src/include/resource/ucmd-module.h @@ -172,7 +172,7 @@ typedef enum { #define SID_KV_FL_AR UINT64_C(0x0000000000000008) /* create an archive of current value */ -#define SID_KV_FL_RS UINT64_C(0x00000000000000010) /* reserve key */ +#define SID_KV_FL_RS UINT64_C(0x0000000000000010) /* reserve key */ #define SID_KV_FL_FRG_RD UINT64_C(0x0000000000000020) /* foreign modules can read */ #define SID_KV_FL_SUB_RD UINT64_C(0x0000000000000040) /* subordinate modules can read */