summaryrefslogtreecommitdiff
path: root/tools.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools.cpp')
-rw-r--r--tools.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools.cpp b/tools.cpp
index 8b6006e..bda91f0 100644
--- a/tools.cpp
+++ b/tools.cpp
@@ -19,7 +19,7 @@ istream& operator>>( istream& is, tChannelID& ret )
{
/* alternativ implementation
string line;
- if ( !getline( is, line ) ) {
+ if ( !getline( is, line ) ) {
if ( !is.eof() )
is.setstate( ios::badbit );
else
@@ -42,7 +42,7 @@ istream& operator>>( istream& is, tChannelID& ret )
return is;
}
}
-
+
if ( !line.empty() && !( ret = tChannelID::FromString( line.c_str() ) ).Valid() )
is.setstate( ios::badbit );
return is;