[PATCH] wsdapi/tests: Add a trailing '\n' to an ok() call.

Francois Gouget fgouget at free.fr
Fri Jun 1 04:12:38 CDT 2018


Signed-off-by: Francois Gouget <fgouget at free.fr>
---
 dlls/wsdapi/tests/discovery.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/wsdapi/tests/discovery.c b/dlls/wsdapi/tests/discovery.c
index cfdd41fe83c..96c2ead7f9a 100644
--- a/dlls/wsdapi/tests/discovery.c
+++ b/dlls/wsdapi/tests/discovery.c
@@ -540,7 +540,7 @@ static HRESULT WINAPI IWSDiscoveryPublisherNotifyImpl_ProbeHandler(IWSDiscoveryP
         ok(pSoap->Header.Action != NULL && lstrcmpW(pSoap->Header.Action, actionProbe) == 0,
             "pSoap->Header.Action == '%s'\n", wine_dbgstr_w(pSoap->Header.Action));
 
-        ok(pSoap->Header.MessageID != NULL, "pSoap->Header.MessageID == NULL");
+        ok(pSoap->Header.MessageID != NULL, "pSoap->Header.MessageID == NULL\n");
 
         /* Ensure the message ID is at least 9 characters long (to skip past the 'urn:uuid:' prefix) */
         if ((pSoap->Header.MessageID != NULL) && (lstrlenW(pSoap->Header.MessageID) > 9))
-- 
2.17.0




More information about the wine-devel mailing list