From 1ff513e09a263df681e0de2fe3cd191524445c57 Mon Sep 17 00:00:00 2001 From: Kai Philipp Date: Sat, 25 Jan 2020 17:17:41 +0100 Subject: [PATCH] bugfix --- src/dealer_random_test.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/dealer_random_test.cpp b/src/dealer_random_test.cpp index 8eb39260..e7ad488a 100644 --- a/src/dealer_random_test.cpp +++ b/src/dealer_random_test.cpp @@ -98,9 +98,10 @@ main(int argc, char *argv[]) random_shuffle(&cardsArray[0], &cardsArray[NumCards], rand); ostringstream oss(""); - for (int temp = 0; temp < NumCards; temp++) + for (int temp = 0; temp < NumCards; temp++){ if(temp > 0) cout << ","; cout << cardsArray[temp]; + } cout << endl; }