A few indent fixes
authorClifford Wolf <clifford@clifford.at>
Tue, 14 Oct 2014 23:05:08 +0000 (01:05 +0200)
committerClifford Wolf <clifford@clifford.at>
Tue, 14 Oct 2014 23:05:08 +0000 (01:05 +0200)
kernel/log.cc
kernel/log.h
libs/sha1/sha1.cpp

index 4585e7eff8ca7a10cdde85dcee0324e17621f445..2cae6a63628e579b0d05cbed216fdf0a98bfdb72 100644 (file)
@@ -22,7 +22,7 @@
 #include "backends/ilang/ilang_backend.h"
 
 #ifndef _WIN32
-       #include <sys/time.h>
+#  include <sys/time.h>
 #endif
 
 #include <stdlib.h>
index e0c8f7ba015a0b912538b57dc7187e2d9b9a72dc..904ba4759535df45dccc944351f972904ca3dcbe 100644 (file)
@@ -25,8 +25,8 @@
 #include <time.h>
 
 #ifndef _WIN32
-       #include <sys/time.h>
-       #include <sys/resource.h>
+#  include <sys/time.h>
+#  include <sys/resource.h>
 #endif
 
 // from libs/sha1/sha1.h
index 825274b9b705724cb315eb2ec3b9ecbd56f39c95..883d42837d127a818bb6981f9c6e282bab348132 100644 (file)
@@ -261,7 +261,7 @@ void SHA1::read(std::istream &is, std::string &s, int max)
     is.read(sbuf, max);
     s.assign(sbuf, is.gcount());
 
-       delete[] sbuf;
+    delete[] sbuf;
 }