aboutsummaryrefslogtreecommitdiff
path: root/src/libmain
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-07-30 17:13:25 -0400
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-07-30 17:13:25 -0400
commitd50d7a287416da2086b0b24f9d998eabb24c1734 (patch)
tree5e3f01910a9177e9014eede8afbb0cc7889ff085 /src/libmain
parent9cd63d224468af87baf74228acc162873c649493 (diff)
Whitespace
Diffstat (limited to 'src/libmain')
-rw-r--r--src/libmain/shared.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/libmain/shared.cc b/src/libmain/shared.cc
index d39816586..2118e4391 100644
--- a/src/libmain/shared.cc
+++ b/src/libmain/shared.cc
@@ -46,7 +46,7 @@ Path makeRootName(const Path & gcRoot, int & counter)
void printGCWarning()
{
static bool haveWarned = false;
- warnOnce(haveWarned,
+ warnOnce(haveWarned,
"you did not specify `--add-root'; "
"the result might be removed by the garbage collector");
}
@@ -98,7 +98,7 @@ static bool showTrace = false;
static void initAndRun(int argc, char * * argv)
{
setDefaultsFromEnvironment();
-
+
/* Catch SIGINT. */
struct sigaction act;
act.sa_handler = sigintHandler;
@@ -137,7 +137,7 @@ static void initAndRun(int argc, char * * argv)
Strings args, remaining;
while (argc--) args.push_back(*argv++);
args.erase(args.begin());
-
+
/* Expand compound dash options (i.e., `-qlf' -> `-q -l -f'), and
ignore options for the ATerm library. */
for (Strings::iterator i = args.begin(); i != args.end(); ++i) {
@@ -210,7 +210,7 @@ static void initAndRun(int argc, char * * argv)
verbosityDelta += queryIntSetting("verbosity", lvlInfo);
verbosity = (Verbosity) (verbosityDelta < 0 ? 0 : verbosityDelta);
-
+
run(remaining);
/* Close the Nix database. */
@@ -228,7 +228,7 @@ static void setuidInit()
uid_t nixUid = geteuid();
gid_t nixGid = getegid();
-
+
setuidCleanup();
/* Don't trust the current directory. */
@@ -294,7 +294,7 @@ int main(int argc, char * * argv)
right away. */
if (argc == 0) abort();
setuidInit();
-
+
/* Turn on buffering for cerr. */
#if HAVE_PUBSETBUF
std::cerr.rdbuf()->pubsetbuf(buf, sizeof(buf));
@@ -323,7 +323,7 @@ int main(int argc, char * * argv)
throw;
}
} catch (UsageError & e) {
- printMsg(lvlError,
+ printMsg(lvlError,
format(
"error: %1%\n"
"Try `%2% --help' for more information.")