Skip to content
Snippets Groups Projects
Commit 120770b7 authored by Alessandro Rubini's avatar Alessandro Rubini
Browse files

trivial: shell/cmd_pll.c: use mprintf not printf


Signed-off-by: default avatarAlessandro Rubini <rubini@gnudd.com>
parent b9a1c081
No related merge requests found
......@@ -34,7 +34,7 @@ int cmd_pll(const char *args[])
if (!args[1])
return -EINVAL;
spll_get_phase_shift(atoi(args[1]), &cur, &tgt);
printf("%d %d\n", cur, tgt);
mprintf("%d %d\n", cur, tgt);
} else if (!strcasecmp(args[0], "start")) {
if (!args[1])
return -EINVAL;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment