Fix warning when vendor extn not enabled

This commit is contained in:
Vivek Dutta 2025-11-20 18:57:49 +05:30 committed by IOPSYS Dev
parent 42b1290590
commit 2643356bde
No known key found for this signature in database

View file

@ -780,7 +780,7 @@ static int operate_DeviceInfoFirmwareImage_Activate(char *refparam, struct dmctx
snprintf(buffer+len, sizeof(buffer)-len, " '%s' '%s' '%ld' '%d' '%s' '%s' '%s' '%s' '%s'\n",
mode[i], bank_id, (DM_STRTOL(end_time[i]) - DM_STRTOL(start_time[i])),
(i == last_idx), max_retries[i], (keep_config)?keep_config:"1",
(keep_opconf)?keep_opconf:"1", config_scope, user_message[i]);
(keep_opconf)?keep_opconf:"1", (config_scope)?config_scope:"", user_message[i]);
fprintf(file, "%s", buffer);
}