Skip to content

Commit

Permalink
Correct error message wording.
Browse files Browse the repository at this point in the history
  • Loading branch information
jyegerlehner committed Aug 21, 2015
1 parent 1441cfd commit 11f501a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/caffe/util/signal_handler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ namespace {
sigfillset(&sa.sa_mask);
// Intercept SIGHUP and SIGINT
if (sigaction(SIGHUP, &sa, NULL) == -1) {
LOG(FATAL) << "Cannot install SIGHUP handler.";
LOG(FATAL) << "Cannot uninstall SIGHUP handler.";
}
if (sigaction(SIGINT, &sa, NULL) == -1) {
LOG(FATAL) << "Cannot install SIGINT handler.";
LOG(FATAL) << "Cannot uninstall SIGINT handler.";
}

already_hooked_up = false;
Expand Down

0 comments on commit 11f501a

Please sign in to comment.