mirror of
https://github.com/gnustep/libs-sqlclient.git
synced 2025-02-21 02:41:07 +00:00
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:
parent
7a15e95895
commit
6b573d44f5
2 changed files with 3 additions and 2 deletions
|
@ -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>
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue