diff options
author | Yang Tse <yangsita@gmail.com> | 2008-08-20 23:29:07 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-08-20 23:29:07 +0000 |
commit | 1c68e790919cc36331ac5a1e70be5c54f1c6c9d7 (patch) | |
tree | 057875c6b62ed9874e01dc113e255c107eb3333b /lib | |
parent | 473a050f0bd4fa42e11f64deb42730baa0b85c39 (diff) |
Simplify condition check
Diffstat (limited to 'lib')
-rw-r--r-- | lib/setup.h | 20 |
1 files changed, 5 insertions, 15 deletions
diff --git a/lib/setup.h b/lib/setup.h index dcd021851..9cf3d8f31 100644 --- a/lib/setup.h +++ b/lib/setup.h @@ -135,22 +135,12 @@ Error Compilation_aborted_FORMAT_OFF_TU_already_defined #endif -#if (CURL_SIZEOF_CURL_OFF_T > 4) -# if (CURL_SIZEOF_LONG > 4) -# define FORMAT_OFF_T "ld" -# define FORMAT_OFF_TU "lu" -# else -# define FORMAT_OFF_T "lld" -# define FORMAT_OFF_TU "llu" -# endif +#if (CURL_SIZEOF_CURL_OFF_T > CURL_SIZEOF_LONG) +# define FORMAT_OFF_T "lld" +# define FORMAT_OFF_TU "llu" #else -# if (CURL_SIZEOF_LONG > 2) -# define FORMAT_OFF_T "ld" -# define FORMAT_OFF_TU "lu" -# else -# define FORMAT_OFF_T "lld" -# define FORMAT_OFF_TU "llu" -# endif +# define FORMAT_OFF_T "ld" +# define FORMAT_OFF_TU "lu" #endif /* |