Skip to content

Commit

Permalink
fix code review comments
Browse files Browse the repository at this point in the history
Signed-off-by: anandaravuri <ananda.ravuri@intel.com>
  • Loading branch information
anandaravuri committed Dec 1, 2023
1 parent 401f446 commit 9f1f071
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/cxl_mem_tg/cxl_tg_test.h
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ class cxl_tg_test : public test_command {
}

if (tg_exe_->rcnt_ > tg_exe_->wcnt_) {
cerr << "Read cout exceed Write count" << endl;
cerr << "Read count exceeds Write count" << endl;
return -1;
}

Expand All @@ -315,7 +315,7 @@ class cxl_tg_test : public test_command {

if ( (MAX(tg_exe_->wcnt_, tg_exe_->rcnt_) * tg_exe_->loop_) >=
tg_exe_->hdm_size_) {
cerr << "Read,Write and loop cout exceed HDM memory size" << endl;
cerr << "Read,Write and loop count exceeds HDM memory size" << endl;
return -1;
}

Expand Down

0 comments on commit 9f1f071

Please sign in to comment.