mirror of
https://github.com/badaix/snapcast.git
synced 2025-07-25 12:28:56 +02:00
fixed warning
This commit is contained in:
parent
e50775aca8
commit
010e797e1d
1 changed files with 1 additions and 1 deletions
|
@ -282,7 +282,7 @@ static std::string getMacAddress(int sock)
|
||||||
return "";
|
return "";
|
||||||
|
|
||||||
struct ifreq* it = ifc.ifc_req;
|
struct ifreq* it = ifc.ifc_req;
|
||||||
for (size_t i=0; i<ifc.ifc_len;)
|
for (int i=0; i<ifc.ifc_len;)
|
||||||
{
|
{
|
||||||
/// some systems have ifr_addr.sa_len and adjust the length that way, but not mine. weird */
|
/// some systems have ifr_addr.sa_len and adjust the length that way, but not mine. weird */
|
||||||
#ifdef FREEBSD
|
#ifdef FREEBSD
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue