aboutsummaryrefslogtreecommitdiff
path: root/doc/tutorial.rst
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2010-06-15 15:27:35 +0300
committerPetri Lehtinen <petri@digip.org>2010-06-15 15:38:59 +0300
commit68f2861e92e08eb5e2af51c026981bc1e990e1eb (patch)
tree1353f4519c376274cb4d6ebf0851a224cedaba3c /doc/tutorial.rst
parent2caac965d4f675b51815be4a5ae1f305587be911 (diff)
downloadjansson-68f2861e92e08eb5e2af51c026981bc1e990e1eb.zip
jansson-68f2861e92e08eb5e2af51c026981bc1e990e1eb.tar.gz
jansson-68f2861e92e08eb5e2af51c026981bc1e990e1eb.tar.bz2
Unify unsigned integer usage in the API
Replace all occurences of unsigned int and unsigned long with size_t. This is a backwards incompatible change, as the signature of many API functions changes.
Diffstat (limited to 'doc/tutorial.rst')
-rw-r--r--doc/tutorial.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tutorial.rst b/doc/tutorial.rst
index aaeb554..caa11c2 100644
--- a/doc/tutorial.rst
+++ b/doc/tutorial.rst
@@ -118,7 +118,7 @@ first newline in the commit message::
The main function follows. In the beginning, we first declare a bunch
of variables and check the command line parameters::
- unsigned int i;
+ size_t i;
char *text;
char url[URL_SIZE];