From: Clifford Wolf Date: Tue, 14 Oct 2014 23:05:08 +0000 (+0200) Subject: A few indent fixes X-Git-Tag: yosys-0.4~52^2~3 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cf85aab62f961c905e4691fde59af774053d3d58;p=yosys.git A few indent fixes --- diff --git a/kernel/log.cc b/kernel/log.cc index 4585e7eff..2cae6a636 100644 --- a/kernel/log.cc +++ b/kernel/log.cc @@ -22,7 +22,7 @@ #include "backends/ilang/ilang_backend.h" #ifndef _WIN32 - #include +# include #endif #include diff --git a/kernel/log.h b/kernel/log.h index e0c8f7ba0..904ba4759 100644 --- a/kernel/log.h +++ b/kernel/log.h @@ -25,8 +25,8 @@ #include #ifndef _WIN32 - #include - #include +# include +# include #endif // from libs/sha1/sha1.h diff --git a/libs/sha1/sha1.cpp b/libs/sha1/sha1.cpp index 825274b9b..883d42837 100644 --- a/libs/sha1/sha1.cpp +++ b/libs/sha1/sha1.cpp @@ -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; }