aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2007-12-10 09:22:03 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2007-12-10 09:22:03 +0000
commit868d5ffc121c2801a3f56ae9bdbe4694054be536 (patch)
treea84004b01da27fdd6c935120c8b39da17ee6d7ae /doc
parentd5a88aa8b3f00f1528983921b133dd63aeea6221 (diff)
From Michael:
Fixed two typos in ReadMe.Developer documentation: In the example code given, a comment is not properly closed and a semicolon was missing in variable definition. This fixes bug 2085. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23824 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'doc')
-rw-r--r--doc/README.developer4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/README.developer b/doc/README.developer
index adb07fc191..5f6b8c805c 100644
--- a/doc/README.developer
+++ b/doc/README.developer
@@ -2906,7 +2906,7 @@ typedef struct {
/* the GMemChunk base structure */
static GMemChunk *my_vals = NULL;
-/* Registered protocol number
+/* Registered protocol number */
static int my_proto = -1;
@@ -2915,7 +2915,7 @@ static int my_proto = -1;
/* the local variables in the dissector */
conversation_t *conversation;
-my_entry_t *data_ptr
+my_entry_t *data_ptr;
/* look up the conversation */