diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-01-07 22:29:04 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-01-08 17:43:58 -0800 |
commit | d279ffa49284b5e5f787f76edbe8c52226534a64 (patch) | |
tree | 3340f6ee7004f77cb163a7defe0ba7a758dce797 | |
parent | 2fb6295ace36394732815aca5aef1a85e63de56c (diff) |
Remove redundant declaration of FontFileStartListFonts()
Fixes gcc warning:
catalogue.c:336:1: warning: redundant redeclaration of
'FontFileStartListFonts' [-Wredundant-decls]
In file included from ../../include/X11/fonts/fntfilst.h:40:0,
from catalogue.c:32:
../../include/X11/fonts/fntfil.h:92:12: note: previous declaration
of 'FontFileStartListFonts' was here
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Jasper St. Pierre <jstpierre@mecheye.net>
-rw-r--r-- | src/fontfile/catalogue.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/fontfile/catalogue.c b/src/fontfile/catalogue.c index 6b6fc09..6230930 100644 --- a/src/fontfile/catalogue.c +++ b/src/fontfile/catalogue.c @@ -332,11 +332,6 @@ CatalogueListFonts (pointer client, FontPathElementPtr fpe, char *pat, return Successful; } -int -FontFileStartListFonts(pointer client, FontPathElementPtr fpe, - char *pat, int len, int max, - pointer *privatep, int mark_aliases); - typedef struct _LFWIData { pointer *privates; int current; |