tint2conf: Save executor index in comment in config file
This commit is contained in:
parent
453f875314
commit
f8e4cdb56f
1 changed files with 1 additions and 1 deletions
|
@ -645,7 +645,7 @@ void config_write_execp(FILE *fp)
|
||||||
{
|
{
|
||||||
for (int i = 0; i < executors->len; i++) {
|
for (int i = 0; i < executors->len; i++) {
|
||||||
fprintf(fp, "#-------------------------------------\n");
|
fprintf(fp, "#-------------------------------------\n");
|
||||||
fprintf(fp, "# Executor\n");
|
fprintf(fp, "# Executor %d\n", i + 1);
|
||||||
|
|
||||||
Executor *executor = &g_array_index(executors, Executor, i);
|
Executor *executor = &g_array_index(executors, Executor, i);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue