Use @"" constant strings.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@192 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mccallum 1995-03-23 03:58:37 +00:00
parent 51be0428b1
commit e3e3d3ce4f
3 changed files with 9 additions and 5 deletions

View file

@ -1,6 +1,7 @@
#include "second-server.h"
#include "second-client.h"
#include <objects/Connection.h>
#include <objects/String.h>
@implementation SecondServer
@ -77,7 +78,7 @@ int main(int argc, char *argv[])
s = [[SecondServer alloc] init];
c = [Connection newRegisteringAtName:"secondserver" withRootObject:s];
c = [Connection newRegisteringAtName:@"secondserver" withRootObject:s];
printf("Regsitered server object on localhost with name `secondserver'\n");
[c setDelegate:s];