summaryrefslogtreecommitdiffstats
path: root/save-xml.c
diff options
context:
space:
mode:
Diffstat (limited to 'save-xml.c')
-rw-r--r--save-xml.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/save-xml.c b/save-xml.c
index 5f61af77f..d48d0ef08 100644
--- a/save-xml.c
+++ b/save-xml.c
@@ -279,12 +279,12 @@ static void save_sample(struct membuffer *b, struct sample *sample, struct sampl
old->cns = sample->cns;
}
- if (sample->po2 != old->po2) {
- put_milli(b, " po2='", sample->po2, " bar'");
+ if (sample->po2.mbar != old->po2.mbar) {
+ put_milli(b, " po2='", sample->po2.mbar, " bar'");
old->po2 = sample->po2;
}
show_index(b, sample->heartbeat, "heartbeat='", "'");
- show_index(b, sample->bearing, "bearing='", "'");
+ show_index(b, sample->bearing.degrees, "bearing='", "'");
put_format(b, " />\n");
}