diff options
author | Bill Meier <wmeier@newsguy.com> | 2013-12-22 15:47:17 +0000 |
---|---|---|
committer | Bill Meier <wmeier@newsguy.com> | 2013-12-22 15:47:17 +0000 |
commit | e348c13deb255db357154dc066f32cc7c178da78 (patch) | |
tree | c0bc4e0d52e3dd665bd7245f730273e9e21bc453 /epan/tvbuff_subset.c | |
parent | 523abb73f8279b95c6c51b10c3a54d1b71a25064 (diff) | |
download | wireshark-e348c13deb255db357154dc066f32cc7c178da78.tar.gz wireshark-e348c13deb255db357154dc066f32cc7c178da78.tar.bz2 wireshark-e348c13deb255db357154dc066f32cc7c178da78.zip |
(Trivial)
- Minor whitespace changes;
- Fix a typo;
- Add editor modelines to tnbuff_subset.c
svn path=/trunk/; revision=54364
Diffstat (limited to 'epan/tvbuff_subset.c')
-rw-r--r-- | epan/tvbuff_subset.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/epan/tvbuff_subset.c b/epan/tvbuff_subset.c index 3370ee070f..225162f85c 100644 --- a/epan/tvbuff_subset.c +++ b/epan/tvbuff_subset.c @@ -225,7 +225,7 @@ tvbuff_t * tvb_new_proxy(tvbuff_t *backing) { tvbuff_t *tvb; - + if (backing) tvb = tvb_new_with_subset(backing, backing->reported_length, 0, backing->length); else @@ -235,3 +235,17 @@ tvb_new_proxy(tvbuff_t *backing) return tvb; } + + +/* + * Editor modelines - http://www.wireshark.org/tools/modelines.html + * + * Local variables: + * c-basic-offset: 8 + * tab-width: 8 + * indent-tabs-mode: t + * End: + * + * vi: set shiftwidth=8 tabstop=8 noexpandtab: + * :indentSize=8:tabSize=8:noTabs=false: + */ |