aboutsummaryrefslogtreecommitdiffstats
path: root/core/dive.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/dive.c')
-rw-r--r--core/dive.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/dive.c b/core/dive.c
index 8b676c060..0f67ebe61 100644
--- a/core/dive.c
+++ b/core/dive.c
@@ -316,10 +316,10 @@ double get_temp_units(unsigned int mk, const char **units)
if (units_p->temperature == FAHRENHEIT) {
deg = mkelvin_to_F(mk);
- unit = UTF8_DEGREE "F";
+ unit = "°F";
} else {
deg = mkelvin_to_C(mk);
- unit = UTF8_DEGREE "C";
+ unit = "°C";
}
if (units)
*units = unit;