Skip to content

Commit b52a95e

Browse files
jimcgregkh
authored andcommitted
dyndbg: give %3u width in pr-format, cosmetic only
Specify the print-width so log entries line up nicely. no functional changes. Signed-off-by: Jim Cromie <jim.cromie@gmail.com> Link: https://lore.kernel.org/r/20200831182210.850852-2-jim.cromie@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent b27eda5 commit b52a95e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/dynamic_debug.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -947,7 +947,7 @@ int ddebug_add_module(struct _ddebug *tab, unsigned int n,
947947
list_add(&dt->link, &ddebug_tables);
948948
mutex_unlock(&ddebug_lock);
949949

950-
v2pr_info("%u debug prints in module %s\n", n, dt->mod_name);
950+
v2pr_info("%3u debug prints in module %s\n", n, dt->mod_name);
951951
return 0;
952952
}
953953

0 commit comments

Comments
 (0)