Fixing some style issues.

This commit is contained in:
Haitham Gad 2013-03-10 11:36:56 -04:00 committed by Paul Beckingham
parent 50d201a7f0
commit 881e4995e0
2 changed files with 19 additions and 21 deletions

View file

@ -68,7 +68,7 @@ std::string Readline::gets (const std::string& prompt)
////////////////////////////////////////////////////////////////////////////////
bool Readline::interactive_mode (const std::istream& in)
{
return (&in == &std::cin && isatty(0) == 1);
return (&in == &std::cin && isatty (0) == 1);
}
////////////////////////////////////////////////////////////////////////////////
@ -80,7 +80,7 @@ Wordexp::Wordexp (const std::string &str)
////////////////////////////////////////////////////////////////////////////////
Wordexp::~Wordexp ()
{
wordfree(&_p);
wordfree (&_p);
}
////////////////////////////////////////////////////////////////////////////////