diff options
| author | Fangrui Song <i@maskray.me> | 2018-11-18 13:48:31 -0800 |
|---|---|---|
| committer | Fangrui Song <i@maskray.me> | 2018-12-02 10:12:56 -0800 |
| commit | 6fdf5dc163fb219d4bcb9084b754d91e05bf1ad6 (patch) | |
| tree | 9a04c94afe5f3acdaed704b554940ac0e5c7ae1a | |
| parent | c5f8d135cf3555404f1c4df5617f94f4fc2bac87 (diff) | |
Fix "const const" warning
| -rw-r--r-- | fs_test/lwext4_server.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
