summaryrefslogtreecommitdiff
path: root/src/lib/log.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-06-21 01:15:32 +0100
committerCarl Hetherington <cth@carlh.net>2015-06-21 01:15:32 +0100
commite60bb3e51bd1508b149e6b8f6608f09b5196ae26 (patch)
treea7a5b937c9ae138d4eebca8d5130d308bf9ae420 /src/lib/log.cc
parentf07d5125a7b609320682689abe40781f096ca25e (diff)
No-op: remove all trailing whitespace.
Diffstat (limited to 'src/lib/log.cc')
-rw-r--r--src/lib/log.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/log.cc b/src/lib/log.cc
index efea9f6b5..42184ec45 100644
--- a/src/lib/log.cc
+++ b/src/lib/log.cc
@@ -75,7 +75,7 @@ Log::log (string message, int type)
if (type & TYPE_WARNING) {
s << "WARNING: ";
}
-
+
s << message;
do_log (s.str ());
}
@@ -153,7 +153,7 @@ FileLog::head_and_tail (int amount) const
head_amount = size;
tail_amount = 0;
}
-
+
FILE* f = fopen_boost (_file, "r");
if (!f) {
return "";
@@ -162,7 +162,7 @@ FileLog::head_and_tail (int amount) const
string out;
char* buffer = new char[max(head_amount, tail_amount) + 1];
-
+
int N = fread (buffer, 1, head_amount, f);
buffer[N] = '\0';
out += string (buffer);
@@ -171,7 +171,7 @@ FileLog::head_and_tail (int amount) const
out += "\n .\n .\n .\n";
fseek (f, - tail_amount - 1, SEEK_END);
-
+
N = fread (buffer, 1, tail_amount, f);
buffer[N] = '\0';
out += string (buffer) + "\n";