From 749ae5083c2c663eb10a985bf5c27b99c5247542 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Wed, 30 Jun 2010 13:18:42 +0200 Subject: English and message format fixes Signed-off-by: Denys Vlasenko --- src/CLI/CLI.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/CLI/CLI.cpp') diff --git a/src/CLI/CLI.cpp b/src/CLI/CLI.cpp index d882161a..c751bd37 100644 --- a/src/CLI/CLI.cpp +++ b/src/CLI/CLI.cpp @@ -44,7 +44,7 @@ static void print_crash(const map_crash_data_t &crash) char timeloc[256]; int success = strftime(timeloc, 128, "%c", localtime(&time)); if (!success) - error_msg_and_die("Error while converting time to string."); + error_msg_and_die("Error while converting time to string"); printf(_("\tUID : %s\n" "\tUUID : %s\n" @@ -212,7 +212,7 @@ int main(int argc, char** argv) #define SET_OP(newop) \ if (op != -1 && op != newop) \ { \ - error_msg(_("You must specify exactly one operation.")); \ + error_msg(_("You must specify exactly one operation")); \ return 1; \ } \ op = newop; -- cgit