Minor tidyup

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/sqlclient/trunk@19654 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
CaS 2004-06-30 04:43:38 +00:00
parent 7a15e95895
commit 6b573d44f5
2 changed files with 3 additions and 2 deletions

View file

@ -3,6 +3,7 @@ Wed Jun 30 05:40:00 2004 Richard Frith-Macdonald <rfm@gnu.org>
* GNUmakefile: Use ./obj as location for library to link,
for initial case where we link the bundles before installing
the library.
* WebServer.m: Add casts to prevent compiler warning.
Tue Jun 29 18:10:00 2004 Richard Frith-Macdonald <rfm@gnu.org>

View file

@ -322,8 +322,8 @@ unescapeData(const unsigned char* bytes, unsigned length, unsigned char *buf)
fromTemplate: (NSString*)aPath
using: (NSDictionary*)map
{
CREATE_AUTORELEASE_POOL(arp);
NSString *path = (_root == nil) ? @"" : (NSString*)_root;
CREATE_AUTORELEASE_POOL(arp)
NSString *path = (_root == nil) ? (id)@"" : (id)_root;
NSString *str;
NSFileManager *mgr;
BOOL result;