GCC7 fix fallthrough: add default call_error_handler into EDQUOT case

This commit is contained in:
Frédéric Pierret 2017-09-25 16:45:51 +02:00
parent c62c8e4416
commit 27c3582dc5
No known key found for this signature in database
GPG Key ID: 1DABC232BE02201E

View File

@ -100,10 +100,10 @@ void wait_for_result(void)
* desynchronized in this case */ * desynchronized in this case */
return; return;
} }
/* fallthrough */ call_error_handler("File copy: %s%s%s",strerror(hdr.error_code), last_filename_prefix, last_filename);
break;
default: default:
call_error_handler("File copy: %s%s%s", call_error_handler("File copy: %s%s%s",strerror(hdr.error_code), last_filename_prefix, last_filename);
strerror(hdr.error_code), last_filename_prefix, last_filename);
} }
} }
if (hdr.crc32 != crc32_sum) { if (hdr.crc32 != crc32_sum) {