Align system vars in output.

This commit is contained in:
Dianne Skoll
2020-09-20 17:43:51 -04:00
parent 1bef88fccd
commit 6aa2aa0fb3
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
/***************************************************************/
/* */
/* CUSTOM.H. */
/* CUSTOM.H.IN */
/* */
/* Contains various configuration parameters for Remind */
/* which you can customize. */

View File

@@ -835,7 +835,7 @@ static void DumpSysVar(char const *name, const SysVar *v)
return;
}
if (name) strcat(buffer, name); else strcat(buffer, v->name);
fprintf(ErrFp, "%s ", buffer);
fprintf(ErrFp, "%16s ", buffer);
if (v) {
if (v->type == SPECIAL_TYPE) {
Value val;