Skip to content

Commit cc9a66e

Browse files
committed
Fixed missing semi-colon in 5TM debugging
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
1 parent 313e209 commit cc9a66e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sensors/Decagon5TM.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ bool Decagon5TM::getResults(void) {
115115
VWC = (4.3e-6 * (ea * ea * ea)) - (5.5e-4 * (ea * ea)) +
116116
(2.92e-2 * ea) - 5.3e-2;
117117
VWC *= 100; // Convert to actual percent
118-
MS_DBG(F("Calculated VWC:"), ea)
118+
MS_DBG(F("Calculated VWC:"), ea);
119119
if (VWC < 0) {
120120
VWC = 0;
121121
MS_DBG(F("Setting negative VWC to 0"));

0 commit comments

Comments
 (0)