From a6936963fb4816b1a042de6069673bfee9765fee Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Wed, 5 Aug 2009 18:22:23 -0400 Subject: [PATCH] [terminal] fix header prototype argument list was () instead of (void). This fixes a compiler warning. --- src/libply/ply-terminal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libply/ply-terminal.h b/src/libply/ply-terminal.h index 6d700024..df5af542 100644 --- a/src/libply/ply-terminal.h +++ b/src/libply/ply-terminal.h @@ -29,7 +29,7 @@ typedef struct _ply_terminal ply_terminal_t; #ifndef PLY_HIDE_FUNCTION_DECLARATIONS -ply_terminal_t *ply_terminal_new (); +ply_terminal_t *ply_terminal_new (void); void ply_terminal_free (ply_terminal_t *terminal); bool ply_terminal_create_device (ply_terminal_t *terminal); bool ply_terminal_has_device (ply_terminal_t *terminal);