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)
pull/18/head mm_0207537b
Olivier MEDOC 7 years ago committed by Marek Marczykowski-Górecki
parent d703652070
commit 0207537b50
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724

@ -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);

Loading…
Cancel
Save