mononoke: fix typo

Reviewed By: farnz

Differential Revision: D7845161

fbshipit-source-id: 2dadee09cf23f0687640bfd2b29039b0695d7f00
This commit is contained in:
Stanislau Hlebik 2018-05-03 03:14:49 -07:00 committed by Facebook Github Bot
parent 0871d80126
commit e8dbc61fa7

View File

@ -423,7 +423,7 @@ fn main() {
{
let thread_name = handle.thread().name().unwrap_or("unknown").to_owned();
match handle.join() {
Err(panic) => crit!(root_log, "Thread {} paniced with: {:?}", thread_name, panic),
Err(panic) => crit!(root_log, "Thread {} panicked with: {:?}", thread_name, panic),
}
}