Skip to content

Commit

Permalink
Merge pull request #382 from mjguzik/sensor_eof
Browse files Browse the repository at this point in the history
  • Loading branch information
opcm authored May 14, 2022
2 parents 8b70eaa + 4761e33 commit cb81e12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pcm-sensor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ int main()
OUTPUT_SYSTEM_METRIC("QPI_Traffic", (double(counters.getSystem<uint64, ::getAllIncomingQPILinkBytes>()) / 1024 / 1024 / 1024))

// exit
if (s == "quit" || s == "exit") {
if (s == "quit" || s == "exit" || s == "") {
break;
}

Expand Down

0 comments on commit cb81e12

Please sign in to comment.