aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/libexpr/value.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/value.hh b/src/libexpr/value.hh
index c9ec236c4..91b4f78fa 100644
--- a/src/libexpr/value.hh
+++ b/src/libexpr/value.hh
@@ -131,7 +131,7 @@ static inline void mkStringNoCopy(Value & v, const char * s)
static inline void mkString(Value & v, const Symbol & s)
{
- mkStringNoCopy(v, ((string) s).c_str());
+ mkStringNoCopy(v, ((const string &) s).c_str());
}