From f8e4cdb56fb58ae7b8e1e555d59537364317f8a7 Mon Sep 17 00:00:00 2001 From: o9000 Date: Thu, 24 Dec 2015 23:18:33 +0100 Subject: [PATCH] tint2conf: Save executor index in comment in config file --- src/tint2conf/properties_rw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tint2conf/properties_rw.c b/src/tint2conf/properties_rw.c index 0250ce1..dfc5e7e 100644 --- a/src/tint2conf/properties_rw.c +++ b/src/tint2conf/properties_rw.c @@ -645,7 +645,7 @@ void config_write_execp(FILE *fp) { for (int i = 0; i < executors->len; i++) { fprintf(fp, "#-------------------------------------\n"); - fprintf(fp, "# Executor\n"); + fprintf(fp, "# Executor %d\n", i + 1); Executor *executor = &g_array_index(executors, Executor, i);