mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 16:30:41 +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
2cc3cb187c
commit
e6f53eb77e
1 changed files with 3 additions and 3 deletions
|
@ -229,7 +229,7 @@ static void DNSSD_API
|
||||||
const char *hosttarget,
|
const char *hosttarget,
|
||||||
uint16_t port,
|
uint16_t port,
|
||||||
uint16_t txtLen,
|
uint16_t txtLen,
|
||||||
const char *txtRecord,
|
const unsigned char *txtRecord,
|
||||||
void *context);
|
void *context);
|
||||||
|
|
||||||
static void DNSSD_API
|
static void DNSSD_API
|
||||||
|
@ -1174,7 +1174,7 @@ static void DNSSD_API
|
||||||
target: (const char *) hosttarget
|
target: (const char *) hosttarget
|
||||||
port: (uint16_t) port
|
port: (uint16_t) port
|
||||||
length: (uint16_t) txtLen
|
length: (uint16_t) txtLen
|
||||||
record: (const char *) txtRecord
|
record: (const unsigned char *) txtRecord
|
||||||
{
|
{
|
||||||
Service *service;
|
Service *service;
|
||||||
|
|
||||||
|
@ -3262,7 +3262,7 @@ ResolverCallback(DNSServiceRef sdRef,
|
||||||
const char *hosttarget,
|
const char *hosttarget,
|
||||||
uint16_t port,
|
uint16_t port,
|
||||||
uint16_t txtLen,
|
uint16_t txtLen,
|
||||||
const char *txtRecord,
|
const unsigned char *txtRecord,
|
||||||
void *context)
|
void *context)
|
||||||
{
|
{
|
||||||
// NSNetService
|
// NSNetService
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue