aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/wtap.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2010-06-06 22:35:33 +0000
committerGuy Harris <guy@alum.mit.edu>2010-06-06 22:35:33 +0000
commita88d19d9617a40ff2228afe1ad421f7384be7de4 (patch)
treee0a01be88b682777ba72870e87dc7dcfd10a8332 /wiretap/wtap.h
parent2206464efbba9be04c7ef91f30866a467e67be4f (diff)
Clean up indentation.
svn path=/trunk/; revision=33118
Diffstat (limited to 'wiretap/wtap.h')
-rw-r--r--wiretap/wtap.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/wiretap/wtap.h b/wiretap/wtap.h
index 953778e350..eec38c4766 100644
--- a/wiretap/wtap.h
+++ b/wiretap/wtap.h
@@ -817,11 +817,11 @@ typedef struct wtap_dumper wtap_dumper;
struct file_type_info {
/* the file type name */
/* should be NULL for all "pseudo" types that are only internally used and not read/writeable */
- const char *name;
+ const char *name;
/* the file type short name, used as a shortcut for the command line tools */
/* should be NULL for all "pseudo" types that are only internally used and not read/writeable */
- const char *short_name;
+ const char *short_name;
/* the common file extensions for this type (seperated by semicolon) */
/* should be *.* if no common extension is applicable */
@@ -832,15 +832,15 @@ struct file_type_info {
const char *file_extension_default;
/* can this type be compressed with gzip? */
- gboolean can_compress;
+ gboolean can_compress;
/* can this type write this encapsulation format? */
/* should be NULL is this file type don't have write support */
- int (*can_write_encap)(int);
+ int (*can_write_encap)(int);
/* the function to open the capture file for writing */
/* should be NULL is this file type don't have write support */
- int (*dump_open)(wtap_dumper *, gboolean, int *);
+ int (*dump_open)(wtap_dumper *, gboolean, int *);
};