Skip to content

Commit

Permalink
Typo fixes, prepare new release
Browse files Browse the repository at this point in the history
  • Loading branch information
ratt-priv-ci committed Feb 5, 2019
1 parent 85baf30 commit 9b7ba31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ RUN docker-apt-install \
casacore-tools \
casarest \
libboost-all-dev \
libreadline6-dev
libreadline6-dev \
build-essential \
cmake

Expand Down
2 changes: 1 addition & 1 deletion LOFAR/LCS/Common/src/ReadLine.cc
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ namespace LOFAR
{
if (!prompt.empty()) cerr << prompt;
getline (cin, line);
return cin.eof();
return bool(cin);
}
#endif

Expand Down

0 comments on commit 9b7ba31

Please sign in to comment.