Files
nuttx/fs
Ville Juven a37d094f31 fs/shmfs: Fix illegal usage of void* arithmetics
Fixes build error with -Werror:

shm/shmfs.c: In function 'shmfs_read':
shm/shmfs.c:122:33: error: pointer of type 'void *' used in arithmetic [-Werror=pointer-arith]
  122 |       memcpy(buffer, sho->paddr + startpos, nread);
      |                                 ^
shm/shmfs.c: In function 'shmfs_write':
shm/shmfs.c:166:25: error: pointer of type 'void *' used in arithmetic [-Werror=pointer-arith]
  166 |       memcpy(sho->paddr + startpos, buffer, nwritten);
      |                         ^
cc1: all warnings being treated as errors
2023-08-22 23:33:20 +08:00
..
2023-08-01 23:15:37 +02:00
2023-08-19 01:48:48 +08:00
2023-08-08 11:58:29 -03:00
2023-07-31 21:41:30 -07:00
2023-07-29 20:27:10 -07:00
2023-08-01 23:15:37 +02:00
2023-07-11 23:32:17 +08:00