aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2007-12-10 09:22:03 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2007-12-10 09:22:03 +0000
commitac3f5f885dd35c8fed4548ac79c994483541ed23 (patch)
treea84004b01da27fdd6c935120c8b39da17ee6d7ae /doc
parent1e794fc49487a25df0796587a5a18e84304e7f3e (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. svn path=/trunk/; revision=23824
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 */