Skip to content

Commit

Permalink
fix small ClipboardPush error that shouldn't ever happen
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob1 committed Jul 4, 2014
1 parent b59ecf2 commit 89eb6bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PowderToySDL.cpp
Expand Up @@ -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
}

Expand Down

0 comments on commit 89eb6bb

Please sign in to comment.