aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2010-05-08 16:12:29 +0000
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2010-05-08 16:12:29 +0000
commit3c5a9c7f5c818197febba971e31d86651b4732c0 (patch)
treebfb210dfa0e69d5752a029106c9338ff90b3e487 /epan
parentba23d1ae801ef306e00dc259d818324486285f61 (diff)
(Trivial) Fix a typo & some indentation
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32724 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan')
-rw-r--r--epan/ftypes/ftypes.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/epan/ftypes/ftypes.h b/epan/ftypes/ftypes.h
index 5499912ec4..ca3722f5d6 100644
--- a/epan/ftypes/ftypes.h
+++ b/epan/ftypes/ftypes.h
@@ -59,10 +59,10 @@ enum ftenum {
FT_IPv4,
FT_IPv6,
FT_IPXNET,
- FT_FRAMENUM, /* a UINT32, but if selected lets you go to frame with that numbe */
- FT_PCRE, /* a compiled Perl-Compatible Regular Expression object */
- FT_GUID, /* GUID, UUID */
- FT_OID, /* OBJECT IDENTIFIER */
+ FT_FRAMENUM, /* a UINT32, but if selected lets you go to frame with that number */
+ FT_PCRE, /* a compiled Perl-Compatible Regular Expression object */
+ FT_GUID, /* GUID, UUID */
+ FT_OID, /* OBJECT IDENTIFIER */
FT_NUM_TYPES /* last item number plus one */
};
@@ -83,8 +83,8 @@ typedef struct _ftype_t ftype_t;
/* String representation types. */
enum ftrepr {
- FTREPR_DISPLAY,
- FTREPR_DFILTER
+ FTREPR_DISPLAY,
+ FTREPR_DFILTER
};
typedef enum ftrepr ftrepr_t;
@@ -207,7 +207,7 @@ typedef guint (*FvalueLen)(fvalue_t*);
typedef void (*FvalueSlice)(fvalue_t*, GByteArray *, guint offset, guint length);
struct _ftype_t {
- ftenum_t ftype;
+ ftenum_t ftype;
const char *name;
const char *pretty_name;
int wire_size;