Fix gcc Werror because of a typo in a switch/case explicit fallthrough comment

GCC crash because of -Werror=implicit-fallthrough. However the fallthrough exists but has a typo.

Thanks for omac777 analysis (7d0b8155a3)

However the fallthrough exists but has a typo

(cherry picked from commit ea0c714139)
This commit is contained in:
Olivier MEDOC 2017-09-12 21:05:40 +02:00 committed by Marek Marczykowski-Górecki
parent d703652070
commit 0207537b50
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724

View File

@ -100,7 +100,7 @@ void wait_for_result(void)
* desynchronized in this case */
return;
}
/* fall though */
/* fallthrough */
default:
call_error_handler("File copy: %s%s%s",
strerror(hdr.error_code), last_filename_prefix, last_filename);