Skip to content

Commit

Permalink
Tag version 1_24_9
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/tags/base-1_24_9@39574 72102866-910b-0410-8b05-ffd578937521
  • Loading branch information
rfm committed Mar 21, 2016
2 parents 35ab97a + 28893e0 commit 1773846
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Source/GSMDNSNetServices.m
Original file line number Diff line number Diff line change
Expand Up @@ -642,11 +642,11 @@ - (void) scheduleInRunLoop: (NSRunLoop *) aRunLoop
browser->timer = nil;
}

browser->timer = RETAINM([NSTimer timerWithTimeInterval: INTERVAL
target: self
selector: @selector(loop:)
userInfo: nil
repeats: YES]);
browser->timer = RETAIN([NSTimer timerWithTimeInterval: INTERVAL
target: self
selector: @selector(loop:)
userInfo: nil
repeats: YES]);

browser->runloop = aRunLoop;
browser->runloopmode = mode;
Expand Down Expand Up @@ -1143,7 +1143,7 @@ - (void) addAddress: (const void *) rdata
}
else
{
addreses = AUTORELEASE([addresses mutableCopy]);
addresses = AUTORELEASE([addresses mutableCopy]);
}

switch(rrtype)
Expand Down Expand Up @@ -1819,7 +1819,7 @@ - (void) scheduleInRunLoop: (NSRunLoop *) aRunLoop
service->timer = nil;
}

service->timer = RETAUN([NSTimer timerWithTimeInterval: INTERVAL
service->timer = RETAIN([NSTimer timerWithTimeInterval: INTERVAL
target: self
selector: @selector(loop:)
userInfo: nil
Expand Down

0 comments on commit 1773846

Please sign in to comment.