From 962d07156f1f3725834c4ff53afba1b8a5f85531 Mon Sep 17 00:00:00 2001 From: Nathael Pajani Date: Wed, 6 Nov 2013 01:32:24 +0100 Subject: [PATCH] remove space at end of line --- drivers/temp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/temp.c b/drivers/temp.c index 7cb49be..902aa91 100644 --- a/drivers/temp.c +++ b/drivers/temp.c @@ -89,7 +89,7 @@ int probe_sensor(void) */ int convert_to_deci_degrees(uint16_t raw) { - return (((int16_t)raw * 10) >> 8); + return (((int16_t)raw * 10) >> 8); } /* Temp Read -- 2.43.0