This commit is contained in:
Kelvin Sherlock 2016-08-05 22:38:06 -04:00
parent ba0fe6268f
commit 76980a6e06
2 changed files with 3 additions and 1 deletions

View File

@ -12,6 +12,8 @@
#include <cstdio>
#include <cctype>
#include <cstring>
#include <unistd.h>
#include "cxx/string_splitter.h"

View File

@ -179,7 +179,7 @@ namespace {
void Environment::echo(const char *fmt, ...) const {
if (_echo && !_startup) {
for (unsigned i = 0; i <= _indent; ++i) {
for (int i = 0; i <= _indent; ++i) {
fputc(' ', stderr);
fputc(' ', stderr);
}