[kwin_wayland] Fix printing out the X11 display
std::endl was missing.
This commit is contained in:
parent
819c12819b
commit
09e72ce451
1 changed files with 1 additions and 1 deletions
|
@ -153,7 +153,7 @@ static void startXServer(const QByteArray &process, const QByteArray &display)
|
|||
|
||||
displayNumber.prepend(QByteArray(":"));
|
||||
displayNumber.remove(displayNumber.size() -1, 1);
|
||||
std::cout << "X-Server started on display " << displayNumber.constData();
|
||||
std::cout << "X-Server started on display " << displayNumber.constData() << std::endl;
|
||||
|
||||
setenv("DISPLAY", displayNumber.constData(), true);
|
||||
|
||||
|
|
Loading…
Reference in a new issue