Typo fix, from Brad Hards.
svn path=/trunk/; revision=7977
This commit is contained in:
parent
40a25a5519
commit
c664749b18
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user