mirror of
https://github.com/tbamud/tbamud.git
synced 2026-02-19 22:18:07 +01:00
Addressed several compiler warnings.
This commit is contained in:
parent
08374524d0
commit
fc4c64c782
61 changed files with 163 additions and 395 deletions
|
|
@ -8,8 +8,6 @@
|
|||
* CircleMUD is based on DikuMUD, Copyright (C) 1990, 1991. *
|
||||
**************************************************************************/
|
||||
|
||||
#define __COMM_C__
|
||||
|
||||
#include "conf.h"
|
||||
#include "sysdep.h"
|
||||
|
||||
|
|
@ -164,7 +162,7 @@ static sigfunc *my_signal(int signo, sigfunc *func);
|
|||
#endif
|
||||
/* Webster Dictionary Lookup functions */
|
||||
static RETSIGTYPE websterlink(int sig);
|
||||
static void handle_webster_file();
|
||||
static void handle_webster_file(void);
|
||||
|
||||
static void msdp_update(void); /* KaVir plugin*/
|
||||
|
||||
|
|
@ -2477,7 +2475,7 @@ void send_to_range(room_vnum start, room_vnum finish, const char *messg, ...)
|
|||
}
|
||||
}
|
||||
|
||||
const char *ACTNULL = "<NULL>";
|
||||
static const char *ACTNULL = "<NULL>";
|
||||
#define CHECK_NULL(pointer, expression) \
|
||||
if ((pointer) == NULL) i = ACTNULL; else i = (expression);
|
||||
/* higher-level communication: the act() function */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue