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>
This commit is contained in:
Dirk Hohndel 2012-11-10 09:59:20 +01:00
parent cc53a0cf5c
commit 7b18674871

View file

@ -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);
}