mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2025-01-07 12:25:31 +00:00
application: Print positive delta when changing verbosity
Since we already take into account if it's increasing or decreasing we should make the amount (Increased/Decreased by N) positive.
This commit is contained in:
parent
707eee51cb
commit
3225be22a3
1 changed files with 1 additions and 1 deletions
|
@ -517,7 +517,7 @@ calls_application_command_line (GApplication *application,
|
||||||
if (delta != 0)
|
if (delta != 0)
|
||||||
g_print ("%s verbosity by %d to %u\n",
|
g_print ("%s verbosity by %d to %u\n",
|
||||||
delta > 0 ? "Increased" : "Decreased",
|
delta > 0 ? "Increased" : "Decreased",
|
||||||
delta,
|
delta < 0 ? -1 * delta : delta,
|
||||||
level);
|
level);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue