tag.h: remove extra ;

tag.h:49: warning: ISO C does not allow extra ';' outside of a function

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2009-01-18 10:56:31 +01:00
parent c2765f370e
commit 7a20d2fd58
1 changed files with 1 additions and 1 deletions

2
tag.h
View File

@ -46,7 +46,7 @@ void tag_append_to_screen(tag_t *, screen_t *);
int luaA_tag_userdata_new(lua_State *, tag_t *);
DO_RCNT(tag_t, tag, tag_delete)
ARRAY_FUNCS(tag_t *, tag, tag_unref);
ARRAY_FUNCS(tag_t *, tag, tag_unref)
#endif
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80