removed argument *wl as the command line is not used by removecirc

(from Holger).
This commit is contained in:
pnenzi 2009-01-18 16:46:34 +00:00
parent ceecdbf97d
commit d972123d5f
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@
/* Clears ckt and removes current circ. form database */
void
com_removecirc(wordlist *wl)
com_removecirc()
{
struct variable *v, *next;
struct circ *ct;

View File

@ -6,7 +6,7 @@
#ifndef MW_COMS_H_INCLUDED
#define MW_COMS_H_INCLUDED
void com_removecirc(wordlist *wl);
void com_removecirc(void);
#endif