summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/main.c b/sway/main.c
index 9ddbea81..177c0aa1 100644
--- a/sway/main.c
+++ b/sway/main.c
@@ -211,6 +211,8 @@ void enable_debug_flag(const char *flag) {
211 debug.txn_timings = true; 211 debug.txn_timings = true;
212 } else if (strncmp(flag, "txn-timeout=", 12) == 0) { 212 } else if (strncmp(flag, "txn-timeout=", 12) == 0) {
213 server.txn_timeout_ms = atoi(&flag[12]); 213 server.txn_timeout_ms = atoi(&flag[12]);
214 } else {
215 sway_log(SWAY_ERROR, "Unknown debug flag: %s", flag);
214 } 216 }
215} 217}
216 218