Checked in under the "obvious fix/typo rule".

2002-03-06  Fred Fish  <fnf@redhat.com>
	* gdb.base/funcargs.c:  Remove extraneous ';' character.
	* gdb.trace/gdb_c_test.c: Remove extraneous ';' character.
This commit is contained in:
Fred Fish 2002-03-07 04:18:55 +00:00
parent 3ddbd84c49
commit 04c12f60f9
3 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2002-03-06 Fred Fish <fnf@redhat.com>
* gdb.base/funcargs.c: Remove extraneous ';' character.
* gdb.trace/gdb_c_test.c: Remove extraneous ';' character.
2002-03-04 Michael Chastain <mec@shout.net>
* gdb.mi/mi-var-cmd.exp: In test "create local variable func",

View file

@ -747,7 +747,7 @@ int main ()
call2f (f, l, d, c, f, s, d, i);
call2g (l, d, c, f, s, d, i, f);
call2h (d, c, f, s, d, i, f, l);
call2i (c, f, c, c, d, c, c, c, f, s, c, d);;
call2i (c, f, c, c, d, c, c, c, f, s, c, d);
/* Test dereferencing pointers to various integral and floating types */

View file

@ -2542,7 +2542,7 @@ find_memory(unsigned char *mem, long count,
mem, mem_block, mem_addr, mem_size, mem_stamp);
#endif
*location = mem_block + (mem - mem_addr);
length = mem_size - (mem - mem_addr);;
length = mem_size - (mem - mem_addr);
if (length < count)
*incr = length;