mirror of
https://github.com/mirror/wget.git
synced 2025-01-07 19:00:30 +08:00
[svn] Remove warning under AIX.
This commit is contained in:
parent
00196c4303
commit
ac32102041
@ -1,3 +1,9 @@
|
||||
2005-06-25 Hrvoje Niksic <hniksic@xemacs.org>
|
||||
|
||||
* cookies.c (parse_set_cookies): Cast pointer subtraction to int
|
||||
before using it with %d; AIX compiler warns on this.
|
||||
Reported by Jens Schleusener.
|
||||
|
||||
2005-06-24 Hrvoje Niksic <hniksic@xemacs.org>
|
||||
|
||||
* http.c (gethttp): Don't prepend / here.
|
||||
|
@ -636,7 +636,7 @@ parse_set_cookies (const char *sc,
|
||||
if (!silent)
|
||||
logprintf (LOG_NOTQUIET,
|
||||
_("Syntax error in Set-Cookie: %s at position %d.\n"),
|
||||
escnonprint (sc), p - sc);
|
||||
escnonprint (sc), (int) (p - sc));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user