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 /includes/cpu_util.h | |
parent | 1be5e0da8da151fc4bd17ac9f8c335463977d509 (diff) |
Use const for gettext strings
Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'includes/cpu_util.h')
-rw-r--r-- | includes/cpu_util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/cpu_util.h b/includes/cpu_util.h index db72873a..36ca3c2d 100644 --- a/includes/cpu_util.h +++ b/includes/cpu_util.h @@ -12,7 +12,7 @@ #define UNKIFNULL(f) STRIFNULL(f, _("(Unknown)") ) #define EMPIFNULL(f) STRIFNULL(f, "") -gchar *byte_order_str(void); +const gchar *byte_order_str(void); /* from /sys/devices/system/cpu/cpu%d/%s */ gchar* get_cpu_str(const gchar* file, gint cpuid); |