tint2conf: Save executor index in comment in config file
o9000 mrovi9000@gmail.com
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
src/tint2conf/properties_rw.c
→
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);