From f5fb7c713ea443469406a691e60a6f4567a4cb75 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Mon, 17 Jan 2022 00:32:29 +0100 Subject: Fix const warnings Now that the RPCs have const, this forces us cleaning our const-meant functions. --- libtrivfs/set-options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libtrivfs/set-options.c') diff --git a/libtrivfs/set-options.c b/libtrivfs/set-options.c index af5355f1..8477beb8 100644 --- a/libtrivfs/set-options.c +++ b/libtrivfs/set-options.c @@ -24,7 +24,7 @@ /* Set runtime options for FSYS to ARGZ & ARGZ_LEN. */ error_t -trivfs_set_options (struct trivfs_control *fsys, char *argz, size_t argz_len) +trivfs_set_options (struct trivfs_control *fsys, const char *argz, size_t argz_len) { if (trivfs_runtime_argp) return fshelp_set_options (trivfs_runtime_argp, 0, argz, argz_len, fsys); -- cgit v1.2.3