From fe292d90dbac02301d51f83d903be85aa0ff8ca1 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Wed, 12 Jun 2013 21:30:22 -0500 Subject: [PATCH] Fixed compiler warning. --- testApp/utils/testInetAddressUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testApp/utils/testInetAddressUtils.cpp b/testApp/utils/testInetAddressUtils.cpp index c819313..c79845a 100644 --- a/testApp/utils/testInetAddressUtils.cpp +++ b/testApp/utils/testInetAddressUtils.cpp @@ -139,7 +139,7 @@ void test_getBroadcastAddresses() // debug for(size_t i = 0; isize(); i++) { - testDiag(inetAddressToString(broadcasts->at(i)).c_str()); + testDiag("%s", inetAddressToString(broadcasts->at(i)).c_str()); } }