mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
fix sign of argument
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@29739 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
0d8647856e
commit
6e0a10b494
1 changed files with 3 additions and 3 deletions
|
@ -229,7 +229,7 @@ static void DNSSD_API
|
|||
const char *hosttarget,
|
||||
uint16_t port,
|
||||
uint16_t txtLen,
|
||||
const char *txtRecord,
|
||||
const unsigned char *txtRecord,
|
||||
void *context);
|
||||
|
||||
static void DNSSD_API
|
||||
|
@ -1174,7 +1174,7 @@ static void DNSSD_API
|
|||
target: (const char *) hosttarget
|
||||
port: (uint16_t) port
|
||||
length: (uint16_t) txtLen
|
||||
record: (const char *) txtRecord
|
||||
record: (const unsigned char *) txtRecord
|
||||
{
|
||||
Service *service;
|
||||
|
||||
|
@ -3262,7 +3262,7 @@ ResolverCallback(DNSServiceRef sdRef,
|
|||
const char *hosttarget,
|
||||
uint16_t port,
|
||||
uint16_t txtLen,
|
||||
const char *txtRecord,
|
||||
const unsigned char *txtRecord,
|
||||
void *context)
|
||||
{
|
||||
// NSNetService
|
||||
|
|
Loading…
Reference in a new issue