Skip to content

Commit

Permalink
Add static keyword
Browse files Browse the repository at this point in the history
Patch by: michaelortmann
  • Loading branch information
michaelortmann authored and vanosg committed Dec 2, 2018
1 parent cf5e32e commit c4e0c4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/mod/server.mod/server.c
Expand Up @@ -388,7 +388,7 @@ static int calc_penalty(char *msg)
return penalty; return penalty;
} }


char *splitnicks(char **rest) static char *splitnicks(char **rest)
{ {
char *o, *r; char *o, *r;


Expand Down
2 changes: 1 addition & 1 deletion src/mod/share.mod/share.c
Expand Up @@ -2311,7 +2311,7 @@ char *share_start(Function *global_funcs)
return NULL; return NULL;
} }


int private_globals_bitmask() static int private_globals_bitmask()
{ {
struct flag_record fr = { FR_GLOBAL, 0, 0, 0, 0, 0 }; struct flag_record fr = { FR_GLOBAL, 0, 0, 0, 0, 0 };


Expand Down

0 comments on commit c4e0c4c

Please sign in to comment.