Merge pull request #17 from 3JlOy-PYCCKUi/main

litle printf fix
This commit is contained in:
vaxerski 2021-12-11 15:00:59 +01:00 committed by GitHub
commit df02ccaa75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ void Debug::log(LogLevel level, std::string msg) {
default:
break;
}
printf((msg + "\n").c_str());
printf("%s", (msg + "\n").c_str());
// also log to a file
const std::string DEBUGPATH = ISDEBUG ? "/tmp/hypr/hyprd.log" : "/tmp/hypr/hypr.log";
@ -32,4 +32,4 @@ void Debug::log(LogLevel level, std::string msg) {
ofs.open(DEBUGPATH, std::ios::out | std::ios::app);
ofs << msg << "\n";
ofs.close();
}
}