From 035cfd86e5d221cffb2673e936dcb8703e28ce4b Mon Sep 17 00:00:00 2001 From: rhyskidd Date: Wed, 30 May 2012 13:11:56 +0000 Subject: Fix further instances of a class being passed as variable to Print(), instead of the string data itself --- Stars45/NetBrokerClient.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Stars45/NetBrokerClient.cpp') diff --git a/Stars45/NetBrokerClient.cpp b/Stars45/NetBrokerClient.cpp index df913e8..a29a686 100644 --- a/Stars45/NetBrokerClient.cpp +++ b/Stars45/NetBrokerClient.cpp @@ -1,6 +1,6 @@ /* Project Starshatter 4.5 Destroyer Studios LLC - Copyright © 1997-2004. All Rights Reserved. + Copyright (C) 1997-2004. All Rights Reserved. SUBSYSTEM: Stars.exe FILE: NetBrokerClient.cpp @@ -83,7 +83,7 @@ const char* password) if (response) { ::Print(" Response Status: %d\n", response->Status()); - ::Print(" Response Content: %s\n", response->Content()); + ::Print(" Response Content: %s\n", response->Content().data()); } else { ::Print(" No response.\n"); -- cgit v1.1