summaryrefslogtreecommitdiff
path: root/src/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse.c')
-rw-r--r--src/parse.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/parse.c b/src/parse.c
index 019d861..e4f9405 100644
--- a/src/parse.c
+++ b/src/parse.c
@@ -69,7 +69,7 @@
* Diane Bruce (Dianora), June 6 2003
*/
-#define MAXPTRLEN 32
+#define MAXPTRLEN 32
/* Must be a power of 2, and
* larger than 26 [a-z]|[A-Z]
* its used to allocate the set
@@ -89,8 +89,8 @@
struct MessageTree
{
int links; /* Count of all pointers (including msg) at this node
- * used as reference count for deletion of _this_ node.
- */
+ * used as reference count for deletion of _this_ node.
+ */
struct Message *msg;
struct MessageTree *pointers[MAXPTRLEN];
};