Fix "can-hibernate" formatting in upower --dump

All other field names end with a colon, so that one should, too.
This commit is contained in:
Martin Pitt 2012-11-08 09:53:26 +01:00
parent 9518459350
commit 99768c18eb

View file

@ -139,7 +139,7 @@ up_client_print (UpClient *client)
g_print (" daemon-version: %s\n", daemon_version);
g_print (" can-suspend: %s\n", can_suspend ? "yes" : "no");
g_print (" can-hibernate %s\n", can_hibernate ? "yes" : "no");
g_print (" can-hibernate: %s\n", can_hibernate ? "yes" : "no");
g_print (" on-battery: %s\n", on_battery ? "yes" : "no");
g_print (" on-low-battery: %s\n", on_low_battery ? "yes" : "no");
g_print (" lid-is-closed: %s\n", lid_is_closed ? "yes" : "no");