aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wmem
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2014-10-05 23:40:42 -0400
committerBill Meier <wmeier@newsguy.com>2014-10-06 03:42:51 +0000
commit07844512004aacc0a9ecc01ade01081f59a24c64 (patch)
tree141ab3924ae8d7ebad5675fc274daf955538b9cc /epan/wmem
parent07698d536b72f5267ebe654b0b0cbc394b713ce1 (diff)
Adjust some whitespace to match editor modelines.
Change-Id: I9fda7de49255857cc1cf270d6202c85573d91674 Reviewed-on: https://code.wireshark.org/review/4490 Reviewed-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'epan/wmem')
-rw-r--r--epan/wmem/wmem_tree.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/epan/wmem/wmem_tree.h b/epan/wmem/wmem_tree.h
index 3c780714ba..e7e6b2dc34 100644
--- a/epan/wmem/wmem_tree.h
+++ b/epan/wmem/wmem_tree.h
@@ -108,7 +108,7 @@ void *
wmem_tree_lookup32_le(wmem_tree_t *tree, guint32 key);
/** case insensitive strings as keys */
-#define WMEM_TREE_STRING_NOCASE 0x00000001
+#define WMEM_TREE_STRING_NOCASE 0x00000001
/** Insert a new value under a string key. Like wmem_tree_insert32 but where the
* key is a null-terminated string instead of a guint32. You may pass
* WMEM_TREE_STRING_NOCASE to the flags argument in order to make it store the
@@ -156,14 +156,14 @@ typedef struct _wmem_tree_key_t {
* The NFS dissector handles this by providing a guint32 containing the length
* as the very first item in this vector :
*
- * wmem_tree_key_t fhkey[3];
+ * wmem_tree_key_t fhkey[3];
*
- * fhlen=nns->fh_length;
- * fhkey[0].length=1;
- * fhkey[0].key=&fhlen;
- * fhkey[1].length=fhlen/4;
- * fhkey[1].key=nns->fh;
- * fhkey[2].length=0;
+ * fhlen=nns->fh_length;
+ * fhkey[0].length=1;
+ * fhkey[0].key=&fhlen;
+ * fhkey[1].length=fhlen/4;
+ * fhkey[1].key=nns->fh;
+ * fhkey[2].length=0;
*/
WS_DLL_PUBLIC
void