diff options
author | rbuj <[email protected]> | 2020-12-29 13:20:17 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-01-07 18:35:10 +0100 |
commit | d5b116f704848c7224d1cd339be478ecaccdec96 (patch) | |
tree | 576099d2e69b329aaf81e15b79efd7e78591ddf1 /cpufreq/src/cpufreq-monitor-sysfs.c | |
parent | ad76d1dfe9b31be3d9c3bad10712594eb3926ecb (diff) | |
download | mate-applets-d5b116f704848c7224d1cd339be478ecaccdec96.tar.bz2 mate-applets-d5b116f704848c7224d1cd339be478ecaccdec96.tar.xz |
Don't leave any round bracket at line end
Diffstat (limited to 'cpufreq/src/cpufreq-monitor-sysfs.c')
-rw-r--r-- | cpufreq/src/cpufreq-monitor-sysfs.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/cpufreq/src/cpufreq-monitor-sysfs.c b/cpufreq/src/cpufreq-monitor-sysfs.c index 0d7f378a..8ea88de2 100644 --- a/cpufreq/src/cpufreq-monitor-sysfs.c +++ b/cpufreq/src/cpufreq-monitor-sysfs.c @@ -83,10 +83,12 @@ cpufreq_monitor_sysfs_constructor (GType type, guint cpu; GError *error = NULL; - object = G_OBJECT_CLASS ( - cpufreq_monitor_sysfs_parent_class)->constructor (type, - n_construct_properties, - construct_params); + object = + G_OBJECT_CLASS (cpufreq_monitor_sysfs_parent_class) + ->constructor (type, + n_construct_properties, + construct_params); + g_object_get (G_OBJECT (object), "cpu", &cpu, NULL); |