diff options
author | C. Davis <cd.rattan@gmail.com> | 2012-08-11 15:00:55 -0700 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-04-29 13:06:22 +0200 |
commit | a857475501591b6761d15ed933a9927abed23555 (patch) | |
tree | 193c33e1c56d80da0921c0013007bdadc099e392 /source3 | |
parent | 05dde2188fd81af17f1714aac35973df4b170354 (diff) | |
download | samba-a857475501591b6761d15ed933a9927abed23555.tar.gz samba-a857475501591b6761d15ed933a9927abed23555.tar.bz2 samba-a857475501591b6761d15ed933a9927abed23555.zip |
regedit: Improve padding for value summary.
Reviewed-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3')
-rw-r--r-- | source3/utils/regedit_valuelist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/regedit_valuelist.c b/source3/utils/regedit_valuelist.c index 6a02858918..e5c3822b55 100644 --- a/source3/utils/regedit_valuelist.c +++ b/source3/utils/regedit_valuelist.c @@ -253,7 +253,7 @@ WERROR value_list_load(struct value_list *vl, struct registry_key *key) return rv; } - vitem->value_desc = talloc_asprintf(vitem, "%-8s", + vitem->value_desc = talloc_asprintf(vitem, "%-14s", str_regtype(vitem->type)); if (vitem->value_desc == NULL) { talloc_free(vitem); |