[PATCH 08/11] lib: fwts_hwinfo: constify function arguments where appropriate
Colin King
colin.king at canonical.com
Tue Oct 16 19:20:45 UTC 2012
From: Colin Ian King <colin.king at canonical.com>
Signed-off-by: Colin Ian King <colin.king at canonical.com>
---
src/lib/src/fwts_hwinfo.c | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/src/lib/src/fwts_hwinfo.c b/src/lib/src/fwts_hwinfo.c
index e03df6a..995df6c 100644
--- a/src/lib/src/fwts_hwinfo.c
+++ b/src/lib/src/fwts_hwinfo.c
@@ -66,7 +66,11 @@ static void fwts_hwinfo_list_dump(fwts_framework *fw, fwts_list *list)
* fwts_hwinfo_lists_dump()
* dump out contents of two different lists
*/
-static void fwts_hwinfo_lists_dump(fwts_framework *fw, fwts_list *l1, fwts_list *l2, char *message)
+static void fwts_hwinfo_lists_dump(
+ fwts_framework *fw,
+ fwts_list *l1,
+ fwts_list *l2,
+ const char *message)
{
fwts_log_info(fw, "%s configurations differ, before:", message);
fwts_hwinfo_list_dump(fw, l1);
@@ -170,7 +174,12 @@ static int fwts_hwinfo_lists_differ(fwts_list *l1, fwts_list *l2)
* fwts_hwinfo_compare()
* check for differences in a list and if any found, dump out both lists
*/
-static void fwts_hwinfo_lists_compare(fwts_framework *fw, fwts_list *l1, fwts_list *l2, char *message, int *differences)
+static void fwts_hwinfo_lists_compare(
+ fwts_framework *fw,
+ fwts_list *l1,
+ fwts_list *l2,
+ const char *message,
+ int *differences)
{
if (fwts_hwinfo_lists_differ(l1, l2) == FWTS_HWINFO_LISTS_DIFFER) {
(*differences)++;
--
1.7.10.4
More information about the fwts-devel
mailing list