Fix return type of devredir_fuse_data_peek and devredir_fuse_data_dequeue
This commit is contained in:
parent
28a1a090b3
commit
cbe413bd8b
@ -1321,7 +1321,7 @@ dev_redir_file_write(void *fusep, tui32 DeviceId, tui32 FileId,
|
||||
* @return FUSE_DATA on success, or NULL on failure
|
||||
*****************************************************************************/
|
||||
|
||||
void * APP_CC
|
||||
FUSE_DATA *APP_CC
|
||||
devredir_fuse_data_peek(IRP *irp)
|
||||
{
|
||||
log_debug("returning %p", irp->fd_head);
|
||||
@ -1334,7 +1334,7 @@ devredir_fuse_data_peek(IRP *irp)
|
||||
* @return FUSE_DATA on success, NULL on failure
|
||||
*****************************************************************************/
|
||||
|
||||
void * APP_CC
|
||||
FUSE_DATA *APP_CC
|
||||
devredir_fuse_data_dequeue(IRP *irp)
|
||||
{
|
||||
FUSE_DATA *head;
|
||||
|
@ -27,8 +27,8 @@
|
||||
|
||||
#define USE_SHORT_NAMES_IN_DIR_LISTING
|
||||
|
||||
void *devredir_fuse_data_peek(IRP *irp);
|
||||
void *devredir_fuse_data_dequeue(IRP *irp);
|
||||
FUSE_DATA *devredir_fuse_data_peek(IRP *irp);
|
||||
FUSE_DATA *devredir_fuse_data_dequeue(IRP *irp);
|
||||
int devredir_fuse_data_enqueue(IRP *irp, void *vp);
|
||||
|
||||
int APP_CC dev_redir_init(void);
|
||||
|
Loading…
Reference in New Issue
Block a user