From: Timo Kokkonen Date: Mon, 14 Oct 2013 18:53:04 +0000 (+0300) Subject: data.h: Fix comment X-Git-Url: http://git.itanic.dy.fi/?p=log-plotter;a=commitdiff_plain;h=2cccad6c9088390340b4c1ede465bc8eb78074cb data.h: Fix comment The temperature is not in millivolts, is is just plain volts. Fix the comment appropriately. Signed-off-by: Timo Kokkonen --- 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; };