diff options
author | zhuyaliang <[email protected]> | 2023-10-24 19:56:51 +0800 |
---|---|---|
committer | raveit65 <[email protected]> | 2023-11-06 12:56:20 +0100 |
commit | 688ec2f47167fcca1c3e14854b69640479422794 (patch) | |
tree | 4f4f2a806da2dca2bfc13aea2a74fa0a08fdb4a4 /src/egg-console-kit.c | |
parent | 9a8cfd772538539776654401d7a1293595405c90 (diff) | |
download | mate-power-manager-688ec2f47167fcca1c3e14854b69640479422794.tar.bz2 mate-power-manager-688ec2f47167fcca1c3e14854b69640479422794.tar.xz |
Remove compilation warning fix data type format error
Diffstat (limited to 'src/egg-console-kit.c')
-rw-r--r-- | src/egg-console-kit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/egg-console-kit.c b/src/egg-console-kit.c index 617b1df..5c1780e 100644 --- a/src/egg-console-kit.c +++ b/src/egg-console-kit.c @@ -404,7 +404,7 @@ egg_console_kit_init (EggConsoleKit *console) DBUS_TYPE_G_OBJECT_PATH, &console->priv->session_id, G_TYPE_INVALID); if (!ret) { - g_warning ("Failed to get session for pid %i: %s", pid, error->message); + g_warning ("Failed to get session for pid %u: %s", pid, error->message); g_error_free (error); goto out; } |