From 9dadc700d826dcb57896f3461aa0ae0102e2553e Mon Sep 17 00:00:00 2001 From: Leandro Pereira Date: Sat, 29 Jun 2019 18:17:54 -0700 Subject: h_sysfs_read_*() should take const pointers as args --- includes/hardinfo.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'includes') diff --git a/includes/hardinfo.h b/includes/hardinfo.h index 6af37ef0..8888565f 100644 --- a/includes/hardinfo.h +++ b/includes/hardinfo.h @@ -161,9 +161,9 @@ gchar *module_call_method(gchar *method); gchar *module_call_method_param(gchar * method, gchar * parameter); /* Sysfs stuff */ -gfloat h_sysfs_read_float(gchar *endpoint, gchar *entry); -gint h_sysfs_read_int(gchar *endpoint, gchar *entry); -gchar *h_sysfs_read_string(gchar *endpoint, gchar *entry); +gfloat h_sysfs_read_float(const gchar *endpoint, const gchar *entry); +gint h_sysfs_read_int(const gchar *endpoint, const gchar *entry); +gchar *h_sysfs_read_string(const gchar *endpoint, const gchar *entry); #define SCAN_START() static gboolean scanned = FALSE; if (reload) scanned = FALSE; if (scanned) return; #define SCAN_END() scanned = TRUE; -- cgit v1.2.3