Cleanup save_formats() by removing unused function argument.

git-svn-id: svn://svn.code.sf.net/p/bitchx/code/trunk@238 13b04d17-f746-0410-82c6-800466cd88b0
This commit is contained in:
Kevin Easton
2013-06-16 12:21:03 +00:00
parent bad477f9dc
commit ceb0492734
4 changed files with 12 additions and 11 deletions

View File

@@ -93,7 +93,7 @@ extern AJoinList *ajoin_list;
extern void save_idle (FILE *);
extern void save_banwords (FILE *);
extern int save_formats (FILE *);
extern int save_formats (void);
extern void sync_nicklist (UserList *, int);
extern void sync_shitlist (ShitList *, int);
@@ -1671,7 +1671,7 @@ BUILT_IN_COMMAND(savelists)
/* this looks like a bug but it isn't. formats are saved in a
* differant file altogether.
*/
save_formats(outfile);
save_formats();
#endif
}