Skip to content
Snippets Groups Projects
Commit ddef51b6 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Fixed a warning.

Rev: src/modules/files/file.c:1.119
Rev: src/modules/files/file_functions.h:1.6
parent 548c3f32
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
\*/ \*/
#include "global.h" #include "global.h"
RCSID("$Id: file.c,v 1.118 1998/08/06 23:11:06 grubba Exp $"); RCSID("$Id: file.c,v 1.119 1998/08/06 23:20:05 grubba Exp $");
#include "fdlib.h" #include "fdlib.h"
#include "interpret.h" #include "interpret.h"
#include "svalue.h" #include "svalue.h"
...@@ -2258,7 +2258,7 @@ void init_files_efuns(void); ...@@ -2258,7 +2258,7 @@ void init_files_efuns(void);
#define REF (*((struct object **)(fp->current_storage))) #define REF (*((struct object **)(fp->current_storage)))
#define FILE_FUNC(X,Y,Z) \ #define FILE_FUNC(X,Y,Z) \
static int PIKE_CONCAT(Y,_function_number); static int PIKE_CONCAT(Y,_function_number)
#include "file_functions.h" #include "file_functions.h"
......
...@@ -28,8 +28,8 @@ ...@@ -28,8 +28,8 @@
FILE_FUNC("set_write_oob_callback",file_set_write_oob_callback,"function(mixed:void)") FILE_FUNC("set_write_oob_callback",file_set_write_oob_callback,"function(mixed:void)")
#endif /* WITH_OOB */ #endif /* WITH_OOB */
FILE_FUNC("_enable_callbacks",file__enable_callbacks,"function(:void)"); FILE_FUNC("_enable_callbacks",file__enable_callbacks,"function(:void)")
FILE_FUNC("_disable_callbacks",file__disable_callbacks,"function(:void)"); FILE_FUNC("_disable_callbacks",file__disable_callbacks,"function(:void)")
FILE_FUNC("set_blocking",file_set_blocking,"function(:void)") FILE_FUNC("set_blocking",file_set_blocking,"function(:void)")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment