diff options
author | Burt P <pburt0@gmail.com> | 2017-07-09 10:41:58 -0500 |
---|---|---|
committer | Leandro Pereira <leandro@hardinfo.org> | 2017-07-12 19:38:41 -0700 |
commit | 8c479234ecbd7385a67e425f4490af2855732c46 (patch) | |
tree | 09850f460afbadb073db101294b21ff8bc1b4b59 /modules/devices/x86/processor.c | |
parent | a59d0d98e0fdf5f3862c83538d93d9bed70aaa7c (diff) |
x86: make cache info translatable
Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'modules/devices/x86/processor.c')
-rw-r--r-- | modules/devices/x86/processor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/devices/x86/processor.c b/modules/devices/x86/processor.c index 3e0a8026..622e1f92 100644 --- a/modules/devices/x86/processor.c +++ b/modules/devices/x86/processor.c @@ -148,7 +148,7 @@ static gchar *__cache_get_info_as_string(Processor *processor) for (cache_list = processor->cache; cache_list; cache_list = cache_list->next) { cache = (ProcessorCache *)cache_list->data; - result = h_strdup_cprintf("Level %d (%s)=%d-way set-associative, %d sets, %dKB size\n", + result = h_strdup_cprintf(_("Level %d (%s)=%d-way set-associative, %d sets, %dKB size\n"), result, cache->level, cache->type, |