Bugfix in FTermDetection::getXTermColorName

This commit is contained in:
Markus Gans 2018-12-26 23:39:15 +01:00
parent eb8ae63b72
commit 8e618812ac
1 changed files with 1 additions and 1 deletions

View File

@ -523,7 +523,7 @@ const FString FTermDetection::getXTermColorName (int color)
int stdin_no = FTermios::getStdIn(); int stdin_no = FTermios::getStdIn();
char temp[512] = { }; char temp[512] = { };
std::fprintf (stdout, OSC "4;%3d;?" BEL, color); // get color std::fprintf (stdout, OSC "4;%d;?" BEL, color); // get color
std::fflush(stdout); std::fflush(stdout);
FD_ZERO(&ifds); FD_ZERO(&ifds);