Skip to content

Commit

Permalink
Fix namespace error with enum ESocketFamily in MdnsPlatform
Browse files Browse the repository at this point in the history
  • Loading branch information
lross-linn committed Aug 18, 2021
1 parent d904f15 commit e5b4703
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenHome/Net/Device/Bonjour/MdnsPlatform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ MdnsPlatform::MdnsPlatform(Environment& aEnv, const TChar* aHost, TBool aHasCach
, iTimerLock("BNJ4")
, iListeners(iEnv, *this)
, iIPv6Enabled(iEnv.InitParams()->IPv6Supported())
, iClient(aEnv, 5353, iIPv6Enabled ? ESocketFamily::eSocketFamilyV6 : ESocketFamily::eSocketFamilyV4)
, iClient(aEnv, 5353, iIPv6Enabled ? eSocketFamilyV6 : eSocketFamilyV4)
, iInterfacesLock("BNJ2")
, iInterfaceIdAllocator()
, iServicesLock("BNJ3")
Expand Down

0 comments on commit e5b4703

Please sign in to comment.