Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lm
diff options
context:
space:
mode:
authorHieu Hoang <hieuhoang@gmail.com>2011-11-18 14:03:52 +0400
committerHieu Hoang <hieuhoang@gmail.com>2011-11-18 14:03:52 +0400
commite99bb30d9f0fa22f309af41d22892612a257d331 (patch)
tree18da1774130acbd83e6759a072a850972a0addc3 /lm
parentb34cda0cb191f26681de3391fb7477ad32cff26e (diff)
kenlm build binary stderr message on exit
Diffstat (limited to 'lm')
-rw-r--r--lm/build_binary.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/lm/build_binary.cc b/lm/build_binary.cc
index 827e5efb0..4511a8b9a 100644
--- a/lm/build_binary.cc
+++ b/lm/build_binary.cc
@@ -194,10 +194,9 @@ int main(int argc, char *argv[]) {
}
catch (const std::exception &e) {
std::cerr << e.what() << std::endl;
- std::cerr << "ERROR" << std::endl;
return 1;
}
- std::cerr << "SUCCESS" << std::endl;
+ std::cerr << "KenLM build_binary SUCCESS" << std::endl;
return 0;
}