Skip to content

Commit

Permalink
Try to fix formatting problem
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmoreno committed Sep 9, 2024
1 parent c2ab2ed commit 9464975
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/mdns_rtpmidi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ void rtpmidid::mdns_rtpmidi_t::resolve_callback(
data.address);
DEBUG("Discovered service=\"{}\" in host={}:{} ip={} flags={:04X}",
data.name, data.host_name, data.port, avahi_address_str.data(),
data.flags);
(int)data.flags);

// FIXME: address is not correct for interface (!), so is not unique, how to
// make unique? or filter on interface?
Expand Down Expand Up @@ -461,7 +461,7 @@ void rtpmidid::mdns_rtpmidi_t::browse_callback(const browse_callback_s &data) {
case AVAHI_BROWSER_REMOVE:
INFO("{} REMOVE: service=\"{}\" of type=\"{}\" in domain={} "
"flags={:08X} ",
data.event, data.name, data.type, data.domain, data.flags);
data.event, data.name, data.type, data.domain, (int)data.flags);
if (data.flags & AVAHI_LOOKUP_RESULT_OUR_OWN) {
DEBUG("Received own announcement removal. Ignore.");
return;
Expand Down

0 comments on commit 9464975

Please sign in to comment.