From d2849449ceb51d03fe74590634c8fb63ad97ff9f Mon Sep 17 00:00:00 2001 From: Kai Philipp Date: Sat, 25 Jan 2020 17:14:13 +0100 Subject: [PATCH] bugfix --- src/dealer_random_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dealer_random_test.cpp b/src/dealer_random_test.cpp index 858e3409..b8845b90 100644 --- a/src/dealer_random_test.cpp +++ b/src/dealer_random_test.cpp @@ -99,8 +99,8 @@ main(int argc, char *argv[]) ostringstream oss(""); for (int temp = 0; temp < NumCards; temp++) - oss << cardsArray[temp]; - cout << oss << endl; + cout << cardsArray[temp] << ","; + cout << endl; } } catch (...) {