This commit is contained in:
2021-09-03 15:18:46 +02:00
parent c3a26fdcaf
commit bd895148ea
2 changed files with 4 additions and 7 deletions

View File

@ -3771,9 +3771,8 @@ int program_fpga(int file_des) {
}
// print progress
LOG(logINFO,
("Copying Program to /var/tmp/:%d%%\r",
(int)(((double)(totalsize - filesize) / totalsize) *
100)));
("\tCopying Program to /var/tmp/:%d%%\r",
(int)(((double)(totalsize - filesize) / totalsize) * 100)));
fflush(stdout);
}
if (ret == FAIL) {
@ -3784,7 +3783,7 @@ int program_fpga(int file_des) {
}
free(src);
fclose(fd);
LOG(logINFO, ("\tCopying done\n"));
LOG(logINFO, ("\n\tCopying done\n"));
/* if (ret != FAIL) {
fpgasrc[totalsize] = '\0';