From f178d6e0248f91ac6ce4df79e7c03f7917b5f062 Mon Sep 17 00:00:00 2001 From: Kevin Easton Date: Sat, 16 Nov 2013 00:08:31 +0000 Subject: [PATCH] Fix int/long typo. git-svn-id: svn://svn.code.sf.net/p/bitchx/code/trunk@467 13b04d17-f746-0410-82c6-800466cd88b0 --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index 93db4eb..07b2564 100644 --- a/configure.in +++ b/configure.in @@ -113,11 +113,11 @@ AC_INCLUDES_DEFAULT AC_CHECK_SIZEOF(unsigned int, 4) if test x"$ac_cv_sizeof_unsigned_int" = x"4"; then - AC_DEFINE(UNSIGNED_INT32, 1, Define this if an unsigned long is 32 bits.) + AC_DEFINE(UNSIGNED_INT32, 1, Define this if an unsigned int is 32 bits.) else AC_CHECK_SIZEOF(unsigned long, 4) if test x"$ac_cv_sizeof_unsigned_long" = x"4"; then - AC_DEFINE(UNSIGNED_LONG32, 1, Define this if an unsigned int is 32 bits.) + AC_DEFINE(UNSIGNED_LONG32, 1, Define this if an unsigned long is 32 bits.) else AC_DEFINE(UNKNOWN_32INT, 1, Define this if you are unsure what is 32 bits.) fi