Skip to content

Commit

Permalink
windowing/test/wayland: fix stringstream<<stringstream operator
Browse files Browse the repository at this point in the history
Signed-off-by: memeka <mihailescu2m@gmail.com>
  • Loading branch information
MaxKellermann authored and mihailescu2m committed Mar 24, 2017
1 parent ff6ea13 commit 349851c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/windowing/tests/wayland/WestonProcess.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ xt::Process::~Process()
ss << "Failed to terminate "
<< m_pid
<< std::endl;
ss << processStatusMessages;
ss << processStatusMessages.str();
throw std::runtime_error(ss.str());
}
}
Expand Down

0 comments on commit 349851c

Please sign in to comment.