summaryrefslogtreecommitdiffstats
path: root/sesman/chansrv/irp.c
diff options
context:
space:
mode:
Diffstat (limited to 'sesman/chansrv/irp.c')
-rw-r--r--sesman/chansrv/irp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sesman/chansrv/irp.c b/sesman/chansrv/irp.c
index ad318cb1..d8527270 100644
--- a/sesman/chansrv/irp.c
+++ b/sesman/chansrv/irp.c
@@ -69,7 +69,7 @@ IRP *g_irp_head = NULL;
* @return new IRP or NULL on error
*****************************************************************************/
-IRP * devredir_irp_new()
+IRP * devredir_irp_new(void)
{
IRP *irp;
IRP *irp_last;
@@ -239,7 +239,7 @@ IRP * devredir_irp_find_by_fileid(tui32 FileId)
* Return last IRP in linked list
*****************************************************************************/
-IRP * devredir_irp_get_last()
+IRP * devredir_irp_get_last(void)
{
IRP *irp = g_irp_head;
@@ -255,7 +255,7 @@ IRP * devredir_irp_get_last()
return irp;
}
-void devredir_irp_dump()
+void devredir_irp_dump(void)
{
IRP *irp = g_irp_head;