diff options
author | Jens Arnold <amiconn@rockbox.org> | 2006-03-11 13:30:31 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2006-03-11 13:30:31 +0000 |
commit | 1246668a7807f1f5b9253ad7f9a682fb6b2ff7dd (patch) | |
tree | c95d4433560b1e2ad35f1451a4a53a473aa88b47 /tools | |
parent | 56087e0dd0e179273400f086b01b25ea41f10fd2 (diff) |
Fix silly 64 bit problem in uclpack.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9000 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rw-r--r-- | tools/ucl/src/ucl_conf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ucl/src/ucl_conf.h b/tools/ucl/src/ucl_conf.h index 37e81c6e03..20bbd3b6cd 100644 --- a/tools/ucl/src/ucl_conf.h +++ b/tools/ucl/src/ucl_conf.h @@ -181,7 +181,7 @@ #if !defined(SIZEOF_SIZE_T) -# define SIZEOF_SIZE_T SIZEOF_UNSIGNED +# define SIZEOF_SIZE_T SIZEOF_UNSIGNED_LONG #endif #if !defined(SIZE_T_MAX) # define SIZE_T_MAX UCL_UTYPE_MAX(SIZEOF_SIZE_T) |