2004-06-22 Stefan Jones <stefan.jones@multigig.com>

* src/frontend/com_dl.c:
	Moved variable declaration to beginning of function
This commit is contained in:
stefanjones 2004-06-22 23:29:34 +00:00
parent f5af5b39c5
commit f74d299ca7
2 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,8 @@
2004-06-22 Stefan Jones <stefan.jones@multigig.com>
* src/frontend/com_dl.c:
Moved variable declaration to beginning of function
* configure.in:
Change to version 17

View File

@ -37,6 +37,8 @@ void com_xaltermod(wordlist *wl){
bool found;
char *dev, *p;
char *param;
int id;
int numParams =0;
if (!ft_curckt) {
fprintf(cp_err, "Error: no circuit loaded\n");
@ -104,9 +106,6 @@ void com_xaltermod(wordlist *wl){
device = ft_sim->devices[typecode];
found = FALSE;
int id;
int numParams =0;
for(ww = words;ww;ww = ww->wl_next)
numParams ++;