From: Arnaud Giersch Date: Thu, 1 Mar 2012 16:15:15 +0000 (+0100) Subject: Slight change to error message. X-Git-Tag: exp_20120308~11 X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/commitdiff_plain/10956ab71f4c1781311d9ab77ee06da26b2e8cf9?ds=sidebyside;hp=5ca20b5b1308faecf94f7ea1f3d91bc25f4c7903 Slight change to error message. --- diff --git a/main.cpp b/main.cpp index f31e847..97ab14e 100644 --- a/main.cpp +++ b/main.cpp @@ -171,7 +171,7 @@ static void install_signal_handler() sigemptyset(&action.sa_mask); action.sa_flags = SA_RESTART; if (sigaction(SIGINT, &action, NULL) == -1) { - std::cerr << "sigaction: " << strerror(errno) << "\n"; + std::cerr << "ERROR: sigaction: " << strerror(errno) << "\n"; exit(EXIT_FAILURE_OTHER); } }