Skip to content

Commit

Permalink
Fix warnings for Linux.
Browse files Browse the repository at this point in the history
  • Loading branch information
bakercp committed May 9, 2017
1 parent 2633fe7 commit dbcd74d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion libs/ofxNetworkUtils/src/IPAddressRange.cpp
Expand Up @@ -333,9 +333,12 @@ Poco::Net::IPAddress IPAddressRange::bitwiseOp(const Poco::Net::IPAddress& addre
}
catch (const Poco::InvalidArgumentException& exc)
{
ofLogError("IPAddressRange::makeSubnet") << exc.displayText();
ofLogError("IPAddressRange::bitwiseOp") << exc.displayText();
return Poco::Net::IPAddress();
}

ofLogError("IPAddressRange::bitwiseOp") << "At end of function, this should not happen.";
return Poco::Net::IPAddress();
}


Expand Down

0 comments on commit dbcd74d

Please sign in to comment.