* server.h (buffer_xml_printf): Remove redundant `;'.

This commit is contained in:
Pedro Alves 2010-04-12 13:51:22 +00:00
parent 45ba0d0206
commit e8470a0645
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2010-04-12 Pedro Alves <pedro@codesourcery.com>
* server.h (buffer_xml_printf): Remove redundant `;'.
2010-04-12 Pedro Alves <pedro@codesourcery.com>
* regcache.c (set_register_cache): Invalidate regcaches before

View File

@ -444,7 +444,7 @@ char* buffer_finish (struct buffer *buffer);
/* Simple printf to BUFFER function. Current implemented formatters:
%s - grow an xml escaped text in OBSTACK. */
void buffer_xml_printf (struct buffer *buffer, const char *format, ...)
ATTR_FORMAT (printf, 2, 3);;
ATTR_FORMAT (printf, 2, 3);
#define buffer_grow_str(BUFFER,STRING) \
buffer_grow (BUFFER, STRING, strlen (STRING))