Added a missing semicolon to a function declaration so everything compiles

correctly.
This commit is contained in:
Cody Russell 1999-10-07 06:17:20 +00:00
parent bab6969765
commit 4649192c7a

View File

@ -8,5 +8,5 @@ ArtPixBuf *art_pixbuf_rgb_from_drawable (GdkWindow *window,
gint width, gint height);
ArtPixBuf *art_pixbuf_rgba_from_drawable (GdkWindow *window,
gint x, gint y,
gint width, gint height)
gint width, gint height);
#endif