[PATCH] Remove leftover bits between sensors and setpoint

Anton Lundin glance at acc.umu.se
Sun Sep 13 07:52:56 PDT 2015


This removes leftover bits from when setpoint and sensor values where
treated the same way.

Signed-off-by: Anton Lundin <glance at acc.umu.se>
---
 libdivecomputer.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libdivecomputer.c b/libdivecomputer.c
index 3c69900..ef6a9b9 100644
--- a/libdivecomputer.c
+++ b/libdivecomputer.c
@@ -272,7 +272,7 @@ sample_cb(dc_sample_type_t type, dc_sample_value_t value, void *userdata)
 		break;
 	case DC_SAMPLE_PPO2:
 		if (nsensor < 3)
-			sample->o2sensor[nsensor].mbar = po2 = rint(value.ppo2 * 1000);
+			sample->o2sensor[nsensor].mbar = rint(value.ppo2 * 1000);
 		else
 			report_error("%d is more o2 sensors than we can handle", nsensor);
 		nsensor++;
-- 
2.1.4



More information about the subsurface mailing list