]> git.tdb.fi Git - builder.git/blobdiff - source/filetarget.cpp
Style update: add spaces around assignment operators
[builder.git] / source / filetarget.cpp
index 08b0f3115e984e25d30b73f6d2e21d5a5543236c..37cc65ca06ee282db3b8a62d41c9bc14ba1f8463 100644 (file)
@@ -21,7 +21,7 @@ FileTarget::FileTarget(Builder &b, const Package *p, const FS::Path &a):
        struct stat st;
        if(!FS::stat(path, st))
        {
-               mtime=Time::TimeStamp::from_unixtime(st.st_mtime);
-               size=st.st_size;
+               mtime = Time::TimeStamp::from_unixtime(st.st_mtime);
+               size = st.st_size;
        }
 }