From 1e2c339e4fbe57361e44b474b587497d44fe6140 Mon Sep 17 00:00:00 2001
From: Matthieu Schaller <schaller@strw.leidenuniv.nl>
Date: Fri, 19 Apr 2019 14:21:16 +0200
Subject: [PATCH] Correct error message in the hydro props initialisation.

---
 src/hydro_properties.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/hydro_properties.c b/src/hydro_properties.c
index ca38be1d2e..e5126fe675 100644
--- a/src/hydro_properties.c
+++ b/src/hydro_properties.c
@@ -136,7 +136,7 @@ void hydro_props_init(struct hydro_props *p,
       params, "SPH:initial_temperature", hydro_props_default_init_temp);
 
   if (p->initial_temperature < 0.f)
-    error("ERROR: Minimal temperature set to a negative value!!!");
+    error("ERROR: Initial temperature set to a negative value!!!");
 
   /* Minimal temperature */
   p->minimal_temperature = parser_get_opt_param_float(
-- 
GitLab