mirror of
https://github.com/apache/nuttx.git
synced 2026-05-28 11:56:10 +08:00
noteram: fix variable type
Signed-off-by: wangmingrong <wangmingrong@xiaomi.com>
This commit is contained in:
@@ -111,7 +111,7 @@ static int noteram_open(FAR struct file *filep);
|
|||||||
static int noteram_close(FAR struct file *filep);
|
static int noteram_close(FAR struct file *filep);
|
||||||
static ssize_t noteram_read(FAR struct file *filep,
|
static ssize_t noteram_read(FAR struct file *filep,
|
||||||
FAR char *buffer, size_t buflen);
|
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,
|
static void noteram_add(FAR struct note_driver_s *drv,
|
||||||
FAR const void *note, size_t len);
|
FAR const void *note, size_t len);
|
||||||
static void
|
static void
|
||||||
|
|||||||
@@ -212,7 +212,7 @@ struct lib_rawoutstream_s
|
|||||||
struct lib_fileoutstream_s
|
struct lib_fileoutstream_s
|
||||||
{
|
{
|
||||||
struct lib_outstream_s common;
|
struct lib_outstream_s common;
|
||||||
struct file *file;
|
FAR struct file *file;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct lib_rawsistream_s
|
struct lib_rawsistream_s
|
||||||
|
|||||||
Reference in New Issue
Block a user