summaryrefslogtreecommitdiffstats
path: root/parse-xml.c
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2012-11-10 09:59:20 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2012-11-10 11:54:15 +0100
commit7b1867487186bbc80a8355ecbceb001943cac976 (patch)
treebbcc18f84fe1e52583dfab023e5a3820053292eb /parse-xml.c
parentcc53a0cf5c4748853884eb92b100f0e406b015ae (diff)
downloadsubsurface-7b1867487186bbc80a8355ecbceb001943cac976.tar.gz
Fix cut and paste error in an error message
This has been around for a loooong time, I just happened to stamble across it when reading the code... Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'parse-xml.c')
-rw-r--r--parse-xml.c2
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);
}