* gdb.texinfo (Separate Debug Files): Remove extra semicolon.

This commit is contained in:
Jim Blandy 2003-06-09 21:12:19 +00:00
parent 0ed8aa572b
commit e7a3abfc27
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-06-09 Jim Blandy <jimb@redhat.com>
* gdb.texinfo (Separate Debug Files): Remove extra semicolon.
2003-06-08 Andrew Cagney <cagney@redhat.com>
* gdbint.texinfo (Target Architecture Definition): Delete

View File

@ -10127,7 +10127,7 @@ gnu_debuglink_crc32 (unsigned long crc,
crc = ~crc & 0xffffffff;
for (end = buf + len; buf < end; ++buf)
crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
return ~crc & 0xffffffff;;
return ~crc & 0xffffffff;
@}
@end smallexample