aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution/metar.c
diff options
context:
space:
mode:
authorIain Holmes <iain@src.gnome.org>2001-12-17 20:20:19 +0800
committerIain Holmes <iain@src.gnome.org>2001-12-17 20:20:19 +0800
commitbdb095ab696dc1f2bd4bd081f90ee52d7a4bb61a (patch)
tree989e66e17c72406a28ea9acbd724693a92626e22 /my-evolution/metar.c
parent4effd42a76f5b9a0b73ccdf7ab66cbb36d38ac66 (diff)
downloadgsoc2013-evolution-bdb095ab696dc1f2bd4bd081f90ee52d7a4bb61a.tar
gsoc2013-evolution-bdb095ab696dc1f2bd4bd081f90ee52d7a4bb61a.tar.gz
gsoc2013-evolution-bdb095ab696dc1f2bd4bd081f90ee52d7a4bb61a.tar.bz2
gsoc2013-evolution-bdb095ab696dc1f2bd4bd081f90ee52d7a4bb61a.tar.lz
gsoc2013-evolution-bdb095ab696dc1f2bd4bd081f90ee52d7a4bb61a.tar.xz
gsoc2013-evolution-bdb095ab696dc1f2bd4bd081f90ee52d7a4bb61a.tar.zst
gsoc2013-evolution-bdb095ab696dc1f2bd4bd081f90ee52d7a4bb61a.zip
Merging patches from 1-0-branch
svn path=/trunk/; revision=15109
Diffstat (limited to 'my-evolution/metar.c')
-rw-r--r--my-evolution/metar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/my-evolution/metar.c b/my-evolution/metar.c
index 00b16518be..53d630eff4 100644
--- a/my-evolution/metar.c
+++ b/my-evolution/metar.c
@@ -26,7 +26,7 @@ static regex_t metar_re[RE_NUM];
#define TEMP_F_TO_C(f) (((f) - 32.0) * 0.555556)
#define TEMP_C_TO_F(c) (((c) * 1.8) + 32.0)
-#define TEMP_UNIT_STR(units) (((units) == UNITS_IMPERIAL) ? _("\260F") : _("\260C"))
+#define TEMP_UNIT_STR(units) (((units) == UNITS_IMPERIAL) ? _(" F") : _(" C"))
#define WINDSPEED_KNOTS_TO_KPH(knots) ((knots) * 1.851965)
#define WINDSPEED_KPH_TO_KNOTS(kph) ((kph) * 0.539967)