fixes for warnings

This commit is contained in:
maliakal_d 2021-10-18 17:51:31 +02:00
parent 6b94f266bf
commit d7bbcb24c9
3 changed files with 6 additions and 7 deletions

View File

@ -137,6 +137,7 @@ sls_enable_cxx_warning("-Wnull-dereference")
sls_enable_cxx_warning("-Wduplicated-cond")
sls_disable_cxx_warning("-Wclass-memaccess")
sls_disable_c_warning("-Wstringop-truncation")
sls_disable_c_warning("-Wformat-nonliteral")
if(SLS_USE_SANITIZER)

View File

@ -75,7 +75,7 @@ int deleteOldFile(char *mess) {
char *format = "rm -fr %s";
if (snprintf(cmd, MAX_STR_LENGTH, format, TEMP_PROG_FILE_NAME) >=
MAX_STR_LENGTH) {
sptrcpy(
strcpy(
mess,
"Could not program fpga. Command to delete old file is too long\n");
LOG(logERROR, (mess));
@ -242,9 +242,8 @@ int eraseFlash(char *mess) {
char *format = "flash_eraseall %s";
if (snprintf(cmd, MAX_STR_LENGTH, format, flashDriveName) >=
MAX_STR_LENGTH) {
ret = FAIL;
sptrcpy(mess,
"Could not program fpga. Command to erase flash is too long\n");
strcpy(mess,
"Could not program fpga. Command to erase flash is too long\n");
LOG(logERROR, (mess));
return FAIL;
}

View File

@ -133,9 +133,8 @@ int eraseFlash(char *mess) {
char *format = "flash_erase %s 0 0";
if (snprintf(cmd, MAX_STR_LENGTH, format, flashDriveName) >=
MAX_STR_LENGTH) {
ret = FAIL;
sptrcpy(mess,
"Could not program fpga. Command to erase flash is too long\n");
strcpy(mess,
"Could not program fpga. Command to erase flash is too long\n");
LOG(logERROR, (mess));
return FAIL;
}