include/s_user.h: convert raw attribute into already-existing macro call
I overlooked this existing macro when adding this attribute in an earlier commit.
This commit is contained in:
parent
3109b8a636
commit
e55c29ef11
1 changed files with 2 additions and 1 deletions
|
@ -28,6 +28,7 @@
|
||||||
#define INCLUDED_s_user_h
|
#define INCLUDED_s_user_h
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
#include "ircd_defs.h"
|
||||||
|
|
||||||
struct Client;
|
struct Client;
|
||||||
struct User;
|
struct User;
|
||||||
|
@ -48,7 +49,7 @@ extern int introduce_client(struct Client *client_p, struct Client *source_p,
|
||||||
|
|
||||||
extern void change_nick_user_host(struct Client *target_p, const char *nick, const char *user,
|
extern void change_nick_user_host(struct Client *target_p, const char *nick, const char *user,
|
||||||
const char *host, int newts, const char *format, ...)
|
const char *host, int newts, const char *format, ...)
|
||||||
__attribute__((format(printf, 6, 7)));
|
AFP(6, 7);
|
||||||
|
|
||||||
extern int user_modes[256];
|
extern int user_modes[256];
|
||||||
extern unsigned int find_umode_slot(void);
|
extern unsigned int find_umode_slot(void);
|
||||||
|
|
Loading…
Reference in a new issue