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; }