about summary refs log tree commit diff
path: root/src/libstore/local-store.cc
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2007-02-06T20·03+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2007-02-06T20·03+0000
commit46605fb4f5024120f894f9894b8873c6a666a7a5 (patch)
treec55991b6035b2f16502f874e8b601f18db36db21 /src/libstore/local-store.cc
parent52d03276dd035aab2fc5c0c6e462866b6f96d6fb (diff)
* Fix 64-bit compiler warnings.
Diffstat (limited to 'src/libstore/local-store.cc')
-rw-r--r--src/libstore/local-store.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc
index 56d97a048a..cace5cb60b 100644
--- a/src/libstore/local-store.cc
+++ b/src/libstore/local-store.cc
@@ -205,10 +205,10 @@ static void _canonicalisePathMetaData(const Path & path)
        users group); we check for this case below. */
     if (st.st_uid != geteuid()) {
 #if HAVE_LCHOWN
-        if (lchown(path.c_str(), geteuid(), -1) == -1)
+        if (lchown(path.c_str(), geteuid(), (gid_t) -1) == -1)
 #else
         if (!S_ISLNK(st.st_mode) &&
-            chown(path.c_str(), geteuid(), -1) == -1)
+            chown(path.c_str(), geteuid(), (gid_t) -1) == -1)
 #endif
             throw SysError(format("changing owner of `%1%' to %2%")
                 % path % geteuid());