Skip to content

Commit 2407a04

Browse files
committed
Removed a ',' that didn't belong in the timezone test case
Pointed out by: afc@teri.superlink.net
1 parent 66bfa3e commit 2407a04

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2633,7 +2633,7 @@ if { (eval echo configure:2632: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && t
26332633
cat >> confdefs.h <<\EOF
26342634
#define HAVE_INT_TIMEZONE 1
26352635
EOF
2636-
, echo "$ac_t""yes" 1>&6
2636+
echo "$ac_t""yes" 1>&6
26372637
else
26382638
echo "configure: failed program was:" >&5
26392639
cat conftest.$ac_ext >&5

src/configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ dnl Check for any "odd" conditions
140140
AC_MSG_CHECKING(for int timezone)
141141
AC_TRY_LINK([#include <time.h>],
142142
[int res = timezone / 60; ],
143-
[AC_DEFINE(HAVE_INT_TIMEZONE), AC_MSG_RESULT(yes)],
143+
[AC_DEFINE(HAVE_INT_TIMEZONE) AC_MSG_RESULT(yes)],
144144
AC_MSG_RESULT(no))
145145

146146
AC_MSG_CHECKING(for union semun)

0 commit comments

Comments
 (0)