I want to sprintf Mac address of some found networks in this area like this:
`WiFi connection settings:
MAC: 00 1E C0 10 3B 19
SSID: css`
my code is :
char buf[32];
BYTE MAC[64];
int i;
for(i=1;i<15;i++)
{
MyScanResults = WFScanList(i);
sprintf(buf,"%s", MyScanResults.ssid);
sprintf(&MAC[i*2],"%02x", MyScanResults.bssid[i]);
_dbgwrite("SSID: ");
_dbgwrite(buf);
_dbgwrite("\n");
_dbgwrite("MAC: ");
_dbgwrite(MAC);
}
and Errors are :
C:\Users\h\Desktop\WiFi test\taskFlyport.c:22: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness <
C:\Users\h\Desktop\WiFi test\taskFlyport.c:27: warning: pointer targets in passing argument 1 of '_dbgwrite' differ in signedness<
is there anyone to tell me where is my problem? thanks,regards
BYTE is an
unsigned char
andMAC
is thus anunsigned char[]
.sprintf
wantschar*
.Change MAC's declaration to:
Here's a demo:
Output: