mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-05 14:38:13 +02:00
Remove errant semicolon from macro definition.
This commit is contained in:
parent
8b9c42e8ce
commit
259cbd0a9b
2 changed files with 6 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2004-07-05 Carl Worth <cworth@isi.edu>
|
||||
|
||||
* src/cairo.c (CAIRO_CHECK_SANITY): Remove errant semicolon from
|
||||
macro definition.
|
||||
|
||||
2004-06-21 David Reveman <c99drn@cs.umu.se>
|
||||
|
||||
* configure.in: Require glitz >= 0.1.5.
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ cairo_sane_state (cairo_t *cr)
|
|||
}
|
||||
return 1;
|
||||
}
|
||||
#define CAIRO_CHECK_SANITY(cr) assert(cairo_sane_state ((cr)));
|
||||
#define CAIRO_CHECK_SANITY(cr) assert(cairo_sane_state ((cr)))
|
||||
#else
|
||||
#define CAIRO_CHECK_SANITY(cr)
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue