mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
fix incorrect printf format string
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/branches/stable@24481 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
cf1cd51a3e
commit
7f71c718b3
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-02-06 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/GSHTTPURLHandle.m:
|
||||
Fix incorrect printf format string.
|
||||
|
||||
2007-02-05 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/GSHTTPURLHandle.m:
|
||||
|
|
|
@ -1358,7 +1358,7 @@ static void debugWrite(GSHTTPURLHandle *handle, NSData *data)
|
|||
* Tell superclass that the load failed - let it do housekeeping.
|
||||
*/
|
||||
[self backgroundLoadDidFailWithReason:
|
||||
[NSString stringWithFormat: @"Unable to connect to %@:%@ ... %@",
|
||||
[NSString stringWithFormat: @"Unable to connect to %@:%@ ... %s",
|
||||
host, port, GSLastErrorStr(errno)]];
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue