diff options
author | Burt P <pburt0@gmail.com> | 2017-04-08 21:45:24 -0500 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2017-04-09 10:58:25 -0700 |
commit | ad47b71010499fbe6e6830faed62059761114d66 (patch) | |
tree | f80b134965343ba8896aa00e34fce2fef4b7d2c4 /modules | |
parent | 6a2f052f959b37be4a269bf236f7aef0544b810f (diff) |
Reorder CPU info to put the longest list at the bottom
Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'modules')
-rw-r--r-- | modules/devices/x86/processor.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/devices/x86/processor.c b/modules/devices/x86/processor.c index 77174002..b04bea12 100644 --- a/modules/devices/x86/processor.c +++ b/modules/devices/x86/processor.c @@ -582,11 +582,11 @@ gchar *processor_get_detailed_info(Processor * processor) "Has FPU=%s\n" "[Cache]\n" "%s\n" - "[Capabilities]\n" + "[Power Management]\n" "%s" "[Bugs]\n" "%s" - "[Power Management]\n" + "[Capabilities]\n" "%s"), processor->model_name, processor->family, @@ -607,7 +607,7 @@ gchar *processor_get_detailed_info(Processor * processor) processor->bug_coma ? processor->bug_coma : "no", processor->has_fpu ? processor->has_fpu : "no", cache_info, - tmp_flags, tmp_bugs, tmp_pm); + tmp_pm, tmp_bugs, tmp_flags); g_free(tmp_flags); g_free(tmp_bugs); g_free(tmp_pm); |