diff options
author | Burt P <pburt0@gmail.com> | 2017-07-14 23:31:56 -0500 |
---|---|---|
committer | Leandro Pereira <leandro@hardinfo.org> | 2017-07-19 07:20:33 -0700 |
commit | 155b9396011834c7385ef17da18f82d9d67748b6 (patch) | |
tree | f7ca0d8814742878f307a492422d94ecad2fabc7 /modules/devices | |
parent | 1be5e0da8da151fc4bd17ac9f8c335463977d509 (diff) |
Use const for gettext strings
Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'modules/devices')
-rw-r--r-- | modules/devices/cpu_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/devices/cpu_util.c b/modules/devices/cpu_util.c index 6faa9811..123b325f 100644 --- a/modules/devices/cpu_util.c +++ b/modules/devices/cpu_util.c @@ -21,7 +21,7 @@ #include "hardinfo.h" #include "cpu_util.h" -gchar *byte_order_str() { +const gchar *byte_order_str() { #if G_BYTE_ORDER == G_LITTLE_ENDIAN return _("Little Endian"); #else |