mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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:
parent
cc53a0cf5c
commit
7b18674871
1 changed files with 1 additions and 1 deletions
|
@ -545,7 +545,7 @@ static void decicelsius(char *buffer, void *_temp)
|
||||||
temp->mkelvin = (val.fp/10 + 273.15) * 1000 + 0.5;
|
temp->mkelvin = (val.fp/10 + 273.15) * 1000 + 0.5;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
fprintf(stderr, "Strange julian date: %s", buffer);
|
fprintf(stderr, "Strange temperature: %s", buffer);
|
||||||
}
|
}
|
||||||
free(buffer);
|
free(buffer);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue