diff options
author | Jeff Trawick <trawick@apache.org> | 2007-10-29 20:27:50 +0000 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2007-10-29 20:27:50 +0000 |
commit | bbe4fa71347af34df685c6d6968f576cbc41c526 (patch) | |
tree | 4ffc4473cb5e6bb6822beca4a554a09062d5aa49 /configure.in | |
parent | e1f09278deb0607c5d0a4373a45f266c75de238f (diff) | |
download | apr-bbe4fa71347af34df685c6d6968f576cbc41c526.tar.gz |
size_t is unsigned long on AIX
fix hard-coded format string to match
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@589841 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 0e8822c94..6904edb57 100644 --- a/configure.in +++ b/configure.in @@ -1348,7 +1348,7 @@ case $host in ;; *aix4*|*aix5*) ssize_t_fmt="ld" - size_t_fmt="ld" + size_t_fmt="lu" ;; *beos*) ssize_t_fmt="ld" |