From: Fangrui Song Date: Sun, 18 Nov 2018 21:48:31 +0000 (-0800) Subject: Fix "const const" warning X-Git-Url: https://git.carlh.net/gitweb/?p=lwext4.git;a=commitdiff_plain;h=6fdf5dc163fb219d4bcb9084b754d91e05bf1ad6 Fix "const const" warning --- diff --git a/fs_test/lwext4_server.c b/fs_test/lwext4_server.c index 2c923ba..b65ef3d 100644 --- a/fs_test/lwext4_server.c +++ b/fs_test/lwext4_server.c @@ -626,7 +626,7 @@ static int file_read(const char *p) return rc; } -static int file_write(const const char *p) +static int file_write(const char *p) { int fid = MAX_FILES; int d;