summaryrefslogtreecommitdiff
path: root/epan/xmlstub.h
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-02-20 22:36:34 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-02-20 22:36:34 +0000
commit2f836c20a873e846b17a4900f7c980377a0ed0dd (patch)
tree909db714be8a4d2b92b651d77bca32fb56719787 /epan/xmlstub.h
parent6a60b57c13d0cd7be185e94215cd623ab333e840 (diff)
downloadwireshark-2f836c20a873e846b17a4900f7c980377a0ed0dd.tar.gz
fix a typo: lenght -> length
This seems to be a "more common" typo, fixed it 13 times throughout the code ... svn path=/trunk/; revision=13452
Diffstat (limited to 'epan/xmlstub.h')
-rw-r--r--epan/xmlstub.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/xmlstub.h b/epan/xmlstub.h
index 47a6d0a0ef..2bf30e551d 100644
--- a/epan/xmlstub.h
+++ b/epan/xmlstub.h
@@ -547,9 +547,9 @@ typedef enum {
/**
* xmlCharEncodingInputFunc:
* @out: a pointer ot an array of bytes to store the UTF-8 result
- * @outlen: the lenght of @out
+ * @outlen: the length of @out
* @in: a pointer ot an array of chars in the original encoding
- * @inlen: the lenght of @in
+ * @inlen: the length of @in
*
* Take a block of chars in the original encoding and try to convert
* it to an UTF-8 block of chars out.
@@ -567,9 +567,9 @@ typedef int (* xmlCharEncodingInputFunc)(unsigned char* out, int *outlen,
/**
* xmlCharEncodingOutputFunc:
* @out: a pointer ot an array of bytes to store the result
- * @outlen: the lenght of @out
+ * @outlen: the length of @out
* @in: a pointer ot an array of UTF-8 chars
- * @inlen: the lenght of @in
+ * @inlen: the length of @in
*
* Take a block of UTF-8 chars in and try to convert it to an other
* encoding.