This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[obvious] Remove extra semicolon from example text in manual


2003-06-09  Jim Blandy  <jimb@redhat.com>

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

*** gdb/doc/gdb.texinfo.~1.162.~	2003-05-08 16:37:12.000000000 -0500
--- gdb/doc/gdb.texinfo	2003-06-09 16:10:19.000000000 -0500
***************
*** 10011,10017 ****
    crc = ~crc & 0xffffffff;
    for (end = buf + len; buf < end; ++buf)
      crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
!   return ~crc & 0xffffffff;;
  @}
  @end smallexample
  
--- 10011,10017 ----
    crc = ~crc & 0xffffffff;
    for (end = buf + len; buf < end; ++buf)
      crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
!   return ~crc & 0xffffffff;
  @}
  @end smallexample
  


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]