summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarel Klic <kklic@redhat.com>2010-06-21 17:18:00 +0200
committerKarel Klic <kklic@redhat.com>2010-06-22 11:57:38 +0200
commit8a6e878562d45c88cc4eebcd22d99548cd4470e8 (patch)
treefbfd4da542a050536a9ed633941945ee97bda1d8
parent4e34f506ba1edce5fb15a593ab78ad29d7d14759 (diff)
downloadabrt-8a6e878562d45c88cc4eebcd22d99548cd4470e8.tar.gz
abrt-8a6e878562d45c88cc4eebcd22d99548cd4470e8.tar.xz
abrt-8a6e878562d45c88cc4eebcd22d99548cd4470e8.zip
Indentation only
-rw-r--r--src/CLI/CLI.cpp48
1 files changed, 24 insertions, 24 deletions
diff --git a/src/CLI/CLI.cpp b/src/CLI/CLI.cpp
index 12e433f8..e889cbd2 100644
--- a/src/CLI/CLI.cpp
+++ b/src/CLI/CLI.cpp
@@ -197,30 +197,30 @@ int main(int argc, char** argv)
int c = getopt_long_only(argc, argv, "?V", longopts, &option_index);
switch (c)
{
- case OPT_REPORT:
- case OPT_REPORT_ALWAYS:
- case OPT_DELETE:
- crash_id = optarg;
- /* fall through */
- case OPT_GET_LIST:
- case OPT_GET_LIST_FULL:
- if (op == -1)
- break;
- error_msg(_("You must specify exactly one operation."));
- return 1;
- case -1: /* end of options */
- if (op != -1) /* if some operation was specified... */
- break;
- /* fall through */
- default:
- case '?':
- case OPT_HELP:
- usage(argv[0]);
- return 1;
- case 'V':
- case OPT_VERSION:
- printf("%s "VERSION"\n", progname(argv[0]));
- return 0;
+ case OPT_REPORT:
+ case OPT_REPORT_ALWAYS:
+ case OPT_DELETE:
+ crash_id = optarg;
+ /* fall through */
+ case OPT_GET_LIST:
+ case OPT_GET_LIST_FULL:
+ if (op == -1)
+ break;
+ error_msg(_("You must specify exactly one operation."));
+ return 1;
+ case -1: /* end of options */
+ if (op != -1) /* if some operation was specified... */
+ break;
+ /* fall through */
+ default:
+ case '?':
+ case OPT_HELP:
+ usage(argv[0]);
+ return 1;
+ case 'V':
+ case OPT_VERSION:
+ printf("%s "VERSION"\n", progname(argv[0]));
+ return 0;
}
if (c == -1)
break;