From 48f31ee7427f7e2b87b5b9cf9b86e3b411acf8f0 Mon Sep 17 00:00:00 2001 From: Rasmus Villemoes Date: Wed, 3 Jan 2024 11:47:05 +0100 Subject: cmd/command.c: constify "arg" argument of cmd_get_data_size() This function obviously does not and must not modify "arg". Change the prototype to allow passing an argument of type "const char*" without requiring a cast. Signed-off-by: Rasmus Villemoes --- common/command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common') diff --git a/common/command.c b/common/command.c index 7821c273dae..83feaac1cb9 100644 --- a/common/command.c +++ b/common/command.c @@ -465,7 +465,7 @@ int cmd_auto_complete(const char *const prompt, char *buf, int *np, int *colp) #endif #ifdef CMD_DATA_SIZE -int cmd_get_data_size(char* arg, int default_size) +int cmd_get_data_size(const char *arg, int default_size) { /* Check for a size specification .b, .w or .l. */ -- cgit v1.2.3