aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorvaxerski <[email protected]>2022-08-11 21:29:31 +0200
committervaxerski <[email protected]>2022-08-11 21:29:31 +0200
commitb3c5809986bad58afe45660763ffcc4538eff377 (patch)
treeebcdb371f7f9211da5d6f0be8d1a9a4a96548590
parentae175fdda536778d76b730ce09d42a8b3a47aa9b (diff)
downloadHyprland-b3c5809986bad58afe45660763ffcc4538eff377.tar.gz
Hyprland-b3c5809986bad58afe45660763ffcc4538eff377.zip
fix flags syntax in json
-rw-r--r--src/debug/HyprCtl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug/HyprCtl.cpp b/src/debug/HyprCtl.cpp
index 74b5bbe7..b0d0d86d 100644
--- a/src/debug/HyprCtl.cpp
+++ b/src/debug/HyprCtl.cpp
@@ -433,7 +433,7 @@ R"#({
"commit": "%s",
"dirty": %s
"commit_message": "%s",
- "flags" = [)#", GIT_BRANCH, GIT_COMMIT_HASH, (strcmp(GIT_DIRTY, "dirty") == 0 ? "true" : "false"), removeBeginEndSpacesTabs(GIT_COMMIT_MESSAGE).c_str());
+ "flags": [)#", GIT_BRANCH, GIT_COMMIT_HASH, (strcmp(GIT_DIRTY, "dirty") == 0 ? "true" : "false"), removeBeginEndSpacesTabs(GIT_COMMIT_MESSAGE).c_str());
#ifdef LEGACY_RENDERER
result += "\"legacyrenderer\",";