diff options
-rw-r--r-- | board/gateworks/venice/gsc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/gateworks/venice/gsc.c b/board/gateworks/venice/gsc.c index 23ad58094cd..9a6712ec884 100644 --- a/board/gateworks/venice/gsc.c +++ b/board/gateworks/venice/gsc.c @@ -298,7 +298,7 @@ int gsc_hwmon(void) } /* adjust by offset */ - val += offset; + val += (offset / 1000); printf("%-8s: %d.%03dV\n", label, val / 1000, val % 1000); break; |