diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2012-11-10 11:56:28 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2012-11-10 12:02:33 +0100 |
commit | e29a43681049ef30eb5129f140a1ed0936a9b516 (patch) | |
tree | 4c57c2582e72e42266b7b51ec92276d1b8250347 /parse-xml.c | |
parent | 7f515eb7e53c5ab6d8dde4d2e6876464ed7fdeae (diff) | |
parent | 6ad73a8f043be283c07df34c6a5a43fee1b444e8 (diff) | |
download | subsurface-e29a43681049ef30eb5129f140a1ed0936a9b516.tar.gz |
Merge branch 'ceiling-plot'
This enables plotting the ceiling in deco dives and also adds the
necessary code to the uemis importer. The only other dive computer this
has been tested with the OSTC and that needs a libdivecomputer patch in
order to provide the deco/ceiling information to Subsurface.
Fixes #5
Diffstat (limited to 'parse-xml.c')
-rw-r--r-- | parse-xml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parse-xml.c b/parse-xml.c index 9429580e6..272b82c0f 100644 --- a/parse-xml.c +++ b/parse-xml.c @@ -545,7 +545,7 @@ static void decicelsius(char *buffer, void *_temp) temp->mkelvin = (val.fp/10 + 273.15) * 1000 + 0.5; break; default: - fprintf(stderr, "Strange julian date: %s", buffer); + fprintf(stderr, "Strange temperature: %s", buffer); } free(buffer); } |