diff options
author | Antony Dovgal <tony2001@php.net> | 2008-08-18 14:34:59 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2008-08-18 14:34:59 +0000 |
commit | 9c8ecb35a60fa5e3b123c5a83f93f91198bc7179 (patch) | |
tree | 08d84c7f56bcceff3f67829b32b31d631bb2f5ea /README.PARAMETER_PARSING_API | |
parent | 523cccc09d788c789531b2eeabdd453b59386cc2 (diff) | |
download | php-git-9c8ecb35a60fa5e3b123c5a83f93f91198bc7179.tar.gz |
MFH
Diffstat (limited to 'README.PARAMETER_PARSING_API')
-rw-r--r-- | README.PARAMETER_PARSING_API | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/README.PARAMETER_PARSING_API b/README.PARAMETER_PARSING_API index 77aa5c12a4..d2e47eb421 100644 --- a/README.PARAMETER_PARSING_API +++ b/README.PARAMETER_PARSING_API @@ -69,7 +69,7 @@ Type specifiers Note on 64bit compatibility --------------------------- Please do not forget that int and long are two different things on 64bit -OSes (int is 4bit and long is 8bit), so make sure you pass longs to "l" +OSes (int is 4 bytes and long is 8 bytes), so make sure you pass longs to "l" and ints to strings length (i.e. for "s" you need to pass char * and int), not the other way round! Remember: "l" is the only case when you need to pass long (and that's why |