From 704f669836f879243ed73c47b19af74621c81c0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Sat, 1 Nov 1997 19:16:41 +0100 Subject: [PATCH] Fixed prototype-warning. Rev: src/modules/Image/encodings/gif.c:1.5 --- src/modules/Image/encodings/gif.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/modules/Image/encodings/gif.c b/src/modules/Image/encodings/gif.c index a6a8bf5018..cdbe5429e2 100644 --- a/src/modules/Image/encodings/gif.c +++ b/src/modules/Image/encodings/gif.c @@ -1,9 +1,9 @@ -/* $Id: gif.c,v 1.4 1997/11/01 01:38:07 mirar Exp $ */ +/* $Id: gif.c,v 1.5 1997/11/01 18:16:41 grubba Exp $ */ /* **! module Image **! note -**! $Id: gif.c,v 1.4 1997/11/01 01:38:07 mirar Exp $ +**! $Id: gif.c,v 1.5 1997/11/01 18:16:41 grubba Exp $ **! submodule GIF **! **! This submodule keep the GIF encode/decode capabilities @@ -21,7 +21,7 @@ #include "stralloc.h" #include "global.h" -RCSID("$Id: gif.c,v 1.4 1997/11/01 01:38:07 mirar Exp $"); +RCSID("$Id: gif.c,v 1.5 1997/11/01 18:16:41 grubba Exp $"); #include "pike_macros.h" #include "object.h" #include "constants.h" @@ -518,7 +518,7 @@ void image_gif_render_block(INT32 args) struct program *image_gif_module_program=NULL; -void init_image_gif() +void init_image_gif(void) { start_new_program(); @@ -534,7 +534,7 @@ void init_image_gif() pop_stack(); } -void exit_image_gif() +void exit_image_gif(void) { if(image_gif_module_program) { -- GitLab