INN commit: trunk/include (clibrary.h)

INN Commit rra at isc.org
Mon Aug 1 18:37:12 UTC 2011


    Date: Monday, August 1, 2011 @ 11:37:12
  Author: iulius
Revision: 9298

fix an error in the order of typedef arguments in commit 9291

Modified:
  trunk/include/clibrary.h

------------+
 clibrary.h |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: clibrary.h
===================================================================
--- clibrary.h	2011-08-01 18:35:58 UTC (rev 9297)
+++ clibrary.h	2011-08-01 18:37:12 UTC (rev 9298)
@@ -131,15 +131,15 @@
 
 /* In case <sys/types.h> does not define ptrdiff_t. */
 #if !HAVE_PTRDIFF_T
-typedef ptrdiff_t       long;
+typedef long            ptrdiff_t;
 #endif
 /* In case <signal.h> does not define sig_atomic_t. */
 #if !HAVE_SIG_ATOMIC_T
-typedef sig_atomic_t    int;
+typedef int             sig_atomic_t;
 #endif
 /* In case <sys/socket.h> does not define socklen_t. */
 #if !HAVE_SOCKLEN_T
-typedef socklen_t       int;
+typedef int             socklen_t;
 #endif
 
 END_DECLS




More information about the inn-committers mailing list