File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,15 @@ Version Changes for Hypermail
4
4
HYPERMAIL VERSION 2.4.0:
5
5
============================
6
6
7
+ 2018-10-12 Jose Kahan
8
+ * setup.c
9
+ PreConfig(): removed a 64-bit warning
10
+
7
11
2018-10-11 Jose Kahan
8
12
9
- * string.c parseemail(): for some reason if a ',' char was concatenaned
10
- to an email address, it was being parsed as part of the email username.
13
+ * string.c
14
+ parseemail(): for some reason if a ',' char was concatenaned to an
15
+ email address, it was being parsed as part of the email username.
11
16
12
17
2018-10-10 Jose Kahan
13
18
Original file line number Diff line number Diff line change @@ -1042,7 +1042,7 @@ void PreConfig(void)
1042
1042
case CFG_INTEGER :
1043
1043
case CFG_OCTAL :
1044
1044
if (defval == cfg [i ].def )
1045
- * (int * )cfg [i ].value = (int )defval ;
1045
+ * (int * )cfg [i ].value = (intptr_t )defval ;
1046
1046
else
1047
1047
* (int * )cfg [i ].value = atoi (defval );
1048
1048
break ;
You can’t perform that action at this time.
0 commit comments