Skip to content
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.

Commit

Permalink
cosmetic: remove duplicate semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
winkj committed Jul 23, 2018
1 parent cb3eaba commit f3b8bdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sensirion_ess.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ int SensirionESS::measureIAQ()
}
mTVOC = (uint16_t)(mDataBuf[3] << 8) | mDataBuf[4];
} else {
mTVOC = (uint16_t)(mDataBuf[0] << 8) | mDataBuf[1];;
mTVOC = (uint16_t)(mDataBuf[0] << 8) | mDataBuf[1];
}

return 0;
Expand Down

0 comments on commit f3b8bdc

Please sign in to comment.