aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main.cpp
diff options
context:
space:
mode:
authorPhilip Damianik <[email protected]>2023-09-06 21:45:37 +0200
committerGitHub <[email protected]>2023-09-06 21:45:37 +0200
commit8c83852704ad8d78b839bd532d73b3b9e44724b9 (patch)
tree6e750b39b0b6af35c9a0b3b1385a7925936bcecd /src/main.cpp
parent60c01dab01e3b58abf12c49f4a2fb224900ae401 (diff)
downloadHyprland-8c83852704ad8d78b839bd532d73b3b9e44724b9.tar.gz
Hyprland-8c83852704ad8d78b839bd532d73b3b9e44724b9.zip
internal: Remove all `.c_str()` calls when using `std::vformat` (#3198)
Signed-off-by: pdamianik <[email protected]>
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 204e330d..96b0dc46 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -62,7 +62,7 @@ int main(int argc, char** argv) {
}
configPath = next_arg;
- Debug::log(LOG, "User-specified config location: '{}'", configPath.c_str());
+ Debug::log(LOG, "User-specified config location: '{}'", configPath);
it++;