diff options
author | Burt P <pburt0@gmail.com> | 2017-07-07 22:50:55 -0500 |
---|---|---|
committer | Leandro Pereira <leandro@hardinfo.org> | 2017-07-12 19:38:41 -0700 |
commit | 90de52a726fe04b9748812af141c30aa5f695e5d (patch) | |
tree | dec36ed0293b7e5cdc7255b8f03beb22cda5733d /modules/devices/x86 | |
parent | b6f4cd4205024d0980538d8f88c49951f405b6f2 (diff) |
x86: remove large sprintf() format string from translation
It was broken into smaller pieces by earlier commits.
Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'modules/devices/x86')
-rw-r--r-- | modules/devices/x86/processor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/devices/x86/processor.c b/modules/devices/x86/processor.c index 6d22ba8f..17fbff12 100644 --- a/modules/devices/x86/processor.c +++ b/modules/devices/x86/processor.c @@ -793,7 +793,7 @@ gchar *processor_get_detailed_info(Processor * processor) _("Driver"), processor->scaling_driver); } - ret = g_strdup_printf(_("[%s]\n" + ret = g_strdup_printf("[%s]\n" "Name=%s\n" "Family, model, stepping=%d, %d, %d (%s)\n" "Vendor=%s\n" @@ -813,7 +813,7 @@ gchar *processor_get_detailed_info(Processor * processor) "[%s]\n" /* bugs */ "%s" "[%s]\n" /* flags */ - "%s"), + "%s", _("Processor"), processor->model_name, processor->family, |