From 3bfa98a98d35566cb48da80e19de4b615171c216 Mon Sep 17 00:00:00 2001 From: Justin Fichtner <Justin.Fichtner@lakeshore.com> Date: 周二, 15 8月 2017 00:15:55 +0800 Subject: [PATCH] Fix bug in tests --- libscpi/src/units.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libscpi/src/units.c b/libscpi/src/units.c index 3a7b8c2..3274205 100644 --- a/libscpi/src/units.c +++ b/libscpi/src/units.c @@ -248,7 +248,7 @@ /* Temperature */ {/* name */ "CEL", /* unit */ SCPI_UNIT_CELSIUS, /* mult */ 1}, #if USE_UNITS_IMPERIAL - {/* name */ "FAR", /* unit */ SCPI_UNIT_FAGRENHEIT, /* mult */ 1}, + {/* name */ "FAR", /* unit */ SCPI_UNIT_FAHRENHEIT, /* mult */ 1}, #endif /* USE_UNITS_IMPERIAL */ {/* name */ "K", /* unit */ SCPI_UNIT_KELVIN, /* mult */ 1}, #endif /* USE_UNITS_TEMPERATURE */ -- Gitblit v1.9.1