fix small ClipboardPush error that shouldn't ever happen

This commit is contained in:
jacob1 2014-07-04 19:16:38 -04:00
parent b59ecf2d65
commit 89eb6bbd03

View File

@ -100,7 +100,7 @@ void ClipboardPush(std::string text)
XFlush(sdl_wminfo.info.x11.display);
sdl_wminfo.info.x11.unlock_func();
#else
printf("Not implemented: put text on clipboard \"%s\"\n", text);
printf("Not implemented: put text on clipboard \"%s\"\n", text.c_str());
#endif
}