aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2007-03-14 18:19:13 +0000
committerGuy Harris <guy@alum.mit.edu>2007-03-14 18:19:13 +0000
commit8a3ea1a6f75c54d279bacfab33f876b0165efd31 (patch)
tree83a67cb84bb8fd25d9b132128647a47e60ce065c /gtk
parentc05709dc7066c8433e8bf7c8874c2dd8e382cde1 (diff)
Fix indentation.
svn path=/trunk/; revision=21027
Diffstat (limited to 'gtk')
-rw-r--r--gtk/main.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/gtk/main.c b/gtk/main.c
index 06d82e024c..963ac567e1 100644
--- a/gtk/main.c
+++ b/gtk/main.c
@@ -2254,24 +2254,24 @@ main(int argc, char *argv[])
exit(0);
break;
case 'P': /* Path settings - change these before the Preferences and alike are processed */
- status = filesystem_opt(opt, optarg);
+ status = filesystem_opt(opt, optarg);
if(status != 0) {
- cmdarg_err("-P flag \"%s\" failed (hint: is it quoted and existing?)", optarg);
+ cmdarg_err("-P flag \"%s\" failed (hint: is it quoted and existing?)", optarg);
exit(status);
}
- break;
+ break;
case 'v': /* Show version and exit */
show_version();
exit(0);
break;
case 'X':
- /*
- * Extension command line options have to be processed before
- * we call epan_init() as they are supposed to be used by dissectors
- * or taps very early in the registration process.
- */
- ex_opt_add(optarg);
- break;
+ /*
+ * Extension command line options have to be processed before
+ * we call epan_init() as they are supposed to be used by dissectors
+ * or taps very early in the registration process.
+ */
+ ex_opt_add(optarg);
+ break;
case '?': /* Ignore errors - the "real" scan will catch them. */
break;
}