From c55bf085eb914bd06bba00670a293b3c0528b81f Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 21 Sep 2016 16:11:01 +0200 Subject: printMsg(lvlError, ...) -> printError(...) etc. --- src/libstore/store-api.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libstore/store-api.cc') diff --git a/src/libstore/store-api.cc b/src/libstore/store-api.cc index 4271708436db..90e1747157d4 100644 --- a/src/libstore/store-api.cc +++ b/src/libstore/store-api.cc @@ -472,7 +472,7 @@ void ValidPathInfo::sign(const SecretKey & secretKey) bool ValidPathInfo::isContentAddressed(const Store & store) const { auto warn = [&]() { - printMsg(lvlError, format("warning: path ā€˜%sā€™ claims to be content-addressed but isn't") % path); + printError(format("warning: path ā€˜%sā€™ claims to be content-addressed but isn't") % path); }; if (hasPrefix(ca, "text:")) { -- cgit 1.4.1