mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-24 02:08:04 +00:00
hv: fixed by replace ull to ul.
ul is used as immediate integer suffix with type uint64_t. Tracked-On: #3214 Signed-off-by: Huihuang Shi <huihuang.shi@intel.com>
This commit is contained in:
@@ -102,7 +102,7 @@ void append_seed_arg(char *cmd_dst, bool vm_is_sos)
|
||||
|
||||
if ((cmd_dst != NULL) && vm_is_sos) {
|
||||
for (i = 0U; seed_arg[i].str != NULL; i++) {
|
||||
if (seed_arg[i].addr != 0ULL) {
|
||||
if (seed_arg[i].addr != 0UL) {
|
||||
(void)memset(buf, 0U, sizeof(buf));
|
||||
|
||||
snprintf(buf, sizeof(buf), "%s0x%X ", seed_arg[i].str,
|
||||
|
Reference in New Issue
Block a user