From 2cccad6c9088390340b4c1ede465bc8eb78074cb Mon Sep 17 00:00:00 2001 From: Timo Kokkonen Date: Mon, 14 Oct 2013 21:53:04 +0300 Subject: [PATCH] data.h: Fix comment The temperature is not in millivolts, is is just plain volts. Fix the comment appropriately. Signed-off-by: Timo Kokkonen --- data.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data.h b/data.h index 3034e0c..459ee66 100644 --- a/data.h +++ b/data.h @@ -13,7 +13,7 @@ struct charger_data { double cell_voltage[MAX_CELLS]; double total_charge; /* mAh */ - double int_temp; /* milli celsius */ + double int_temp; /* celsius */ double ext_temp; }; -- 2.44.0