[LEDE-DEV] [PATCH 1/4] [RFC] fstools: block.c: Make static string a const char * instead char *

lede at daniel.thecshore.com lede at daniel.thecshore.com
Wed May 18 03:12:45 PDT 2016


From: Daniel Dickinson <lede at daniel.thecshore.com>

There is no reason for e2fsck string to be altered, and the
only places where is used take const char * as parameters
so make e2fsck a const char *.

Signed-off-by: Daniel Dickinson <lede at daniel.thecshore.com>
---
 block.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/block.c b/block.c
index ef58665..71ffd0b 100644
--- a/block.c
+++ b/block.c
@@ -627,7 +627,7 @@ static void check_filesystem(struct blkid_struct_probe *pr)
 {
 	pid_t pid;
 	struct stat statbuf;
-	char *e2fsck = "/usr/sbin/e2fsck";
+	const char *e2fsck = "/usr/sbin/e2fsck";
 
 	/* UBIFS does not need stuff like fsck */
 	if (!strncmp(pr->id->name, "ubifs", 5))
-- 
1.9.1




More information about the Lede-dev mailing list