diff options
| author | Nikola Pajkovsky <npajkovs@redhat.com> | 2010-06-30 14:42:48 +0200 |
|---|---|---|
| committer | Nikola Pajkovsky <npajkovs@redhat.com> | 2010-06-30 14:42:48 +0200 |
| commit | e04fc8effd469803811435111bb22fb5a6db44b8 (patch) | |
| tree | 2e4e3e24af02c68e608ecc9ea80c28feb494b449 /src/CLI/CLI.cpp | |
| parent | b85c61e854bfd80876825970d1d25399590795cd (diff) | |
| parent | be7875678a508b7524465b3a62bef87d57e2a80e (diff) | |
| download | abrt-e04fc8effd469803811435111bb22fb5a6db44b8.tar.gz abrt-e04fc8effd469803811435111bb22fb5a6db44b8.tar.xz abrt-e04fc8effd469803811435111bb22fb5a6db44b8.zip | |
Merge branch 'master' of ssh://git.fedorahosted.org/git/abrt
Diffstat (limited to 'src/CLI/CLI.cpp')
| -rw-r--r-- | src/CLI/CLI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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; |
