aboutsummaryrefslogtreecommitdiffstats
path: root/doc/README.developer
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-07-07 22:59:54 +0000
committerGuy Harris <guy@alum.mit.edu>2003-07-07 22:59:54 +0000
commitc664749b18c45c4ae3aa07f8b3638a6d960439ca (patch)
tree4cd167c2ac81ccc99c27fea4271bd3cc917059ab /doc/README.developer
parent40a25a551955a0ed15bdc98b20a7b79b3baab9cf (diff)
Typo fix, from Brad Hards.
svn path=/trunk/; revision=7977
Diffstat (limited to 'doc/README.developer')
-rw-r--r--doc/README.developer10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/README.developer b/doc/README.developer
index 9e83126368..82f2151ac5 100644
--- a/doc/README.developer
+++ b/doc/README.developer
@@ -1,4 +1,4 @@
-$Id: README.developer,v 1.75 2003/06/12 10:15:25 guy Exp $
+$Id: README.developer,v 1.76 2003/07/07 22:59:54 guy Exp $
This file is a HOWTO for Ethereal developers. It describes how to start coding
a Ethereal protocol dissector and the use some of the important functions and
@@ -43,8 +43,8 @@ defined. Also, don't assume you can use "%lld", "%llu", "%llx", or
"%ll" for printing them.
Don't use "uint", "ulong" or "ushort"; they aren't defined on all
-platforms. If you want an "int-sized" unsigned quantity, use "uint"; if
-you want a 32-bit unsigned quantity, use "guint32"; and if you want a
+platforms. If you want an "int-sized" unsigned quantity, use "guint";
+if you want a 32-bit unsigned quantity, use "guint32"; and if you want a
16-bit unsigned quantity, use "guint16". Use "%d", "%u", "%x", and "%o"
to print those types; don't use "%ld", "%lu", "%lx", or "%lo", as longs
are 64 bits long on many platforms, but "guint32" is 32 bits long.
@@ -208,7 +208,7 @@ code inside
is needed only if you are using the "snprintf()" function.
-The "$Id: README.developer,v 1.75 2003/06/12 10:15:25 guy Exp $"
+The "$Id: README.developer,v 1.76 2003/07/07 22:59:54 guy Exp $"
in the comment will be updated by CVS when the file is
checked in; it will allow the RCS "ident" command to report which
version of the file is currently checked out.
@@ -218,7 +218,7 @@ version of the file is currently checked out.
* Routines for PROTONAME dissection
* Copyright 2000, YOUR_NAME <YOUR_EMAIL_ADDRESS>
*
- * $Id: README.developer,v 1.75 2003/06/12 10:15:25 guy Exp $
+ * $Id: README.developer,v 1.76 2003/07/07 22:59:54 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>