[PATCH 07/11] lib: fwts_checkeuid: constify function arguments where appropriate

Colin King colin.king at canonical.com
Tue Oct 16 19:20:44 UTC 2012


From: Colin Ian King <colin.king at canonical.com>

Signed-off-by: Colin Ian King <colin.king at canonical.com>
---
 src/lib/include/fwts_checkeuid.h |    2 +-
 src/lib/src/fwts_checkeuid.c     |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lib/include/fwts_checkeuid.h b/src/lib/include/fwts_checkeuid.h
index fb2ce29..3669e39 100644
--- a/src/lib/include/fwts_checkeuid.h
+++ b/src/lib/include/fwts_checkeuid.h
@@ -22,6 +22,6 @@
 
 #include "fwts_framework.h"
 
-int fwts_check_root_euid(fwts_framework *fw, bool warn);
+int fwts_check_root_euid(fwts_framework *fw, const bool warn);
 
 #endif
diff --git a/src/lib/src/fwts_checkeuid.c b/src/lib/src/fwts_checkeuid.c
index da4c32c..756ed81 100644
--- a/src/lib/src/fwts_checkeuid.c
+++ b/src/lib/src/fwts_checkeuid.c
@@ -28,7 +28,7 @@
  *  fwts_check_root_euid()
  *	Check if user has privileges to access ports, memory, etc
  */
-int fwts_check_root_euid(fwts_framework *fw, bool warn)
+int fwts_check_root_euid(fwts_framework *fw, const bool warn)
 {
 	if (geteuid() != 0) {
 		if (warn)
-- 
1.7.10.4




More information about the fwts-devel mailing list