From: Ray Strode Date: Wed, 5 Aug 2009 22:22:23 +0000 (-0400) Subject: [terminal] fix header prototype X-Git-Tag: 0.7.0~67 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a6936963fb4816b1a042de6069673bfee9765fee;p=thirdparty%2Fplymouth.git [terminal] fix header prototype argument list was () instead of (void). This fixes a compiler warning. --- 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);