noteram: fix variable type

Signed-off-by: wangmingrong <wangmingrong@xiaomi.com>
This commit is contained in:
wangmingrong 2024-01-04 20:07:42 +08:00 committed by Xiang Xiao
parent cf0e644a88
commit 1b3f3d19e9
2 changed files with 2 additions and 2 deletions

View file

@ -111,7 +111,7 @@ static int noteram_open(FAR struct file *filep);
static int noteram_close(FAR struct file *filep);
static ssize_t noteram_read(FAR struct file *filep,
FAR char *buffer, size_t buflen);
static int noteram_ioctl(struct file *filep, int cmd, unsigned long arg);
static int noteram_ioctl(FAR struct file *filep, int cmd, unsigned long arg);
static void noteram_add(FAR struct note_driver_s *drv,
FAR const void *note, size_t len);
static void

View file

@ -212,7 +212,7 @@ struct lib_rawoutstream_s
struct lib_fileoutstream_s
{
struct lib_outstream_s common;
struct file *file;
FAR struct file *file;
};
struct lib_rawsistream_s