diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2003-11-17 23:48:47 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2003-11-17 23:48:47 (GMT) |
commit | bb19ed403185f85f0d9993e40d4ea892890e5cf6 (patch) | |
tree | 906d1ec8ea17d1ae87cb823613b9644f7eb94224 /unix/tkUnixRFont.c | |
parent | 3d4310e751a063d749094f93cefd45289e283509 (diff) | |
download | tk-bb19ed403185f85f0d9993e40d4ea892890e5cf6.zip tk-bb19ed403185f85f0d9993e40d4ea892890e5cf6.tar.gz tk-bb19ed403185f85f0d9993e40d4ea892890e5cf6.tar.bz2 |
Removed stupid type error introduced when adding style to code.
Diffstat (limited to 'unix/tkUnixRFont.c')
-rw-r--r-- | unix/tkUnixRFont.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/unix/tkUnixRFont.c b/unix/tkUnixRFont.c index 4033e29..cf45c7c 100644 --- a/unix/tkUnixRFont.c +++ b/unix/tkUnixRFont.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkUnixRFont.c,v 1.5 2003/10/29 10:03:32 dkf Exp $ + * RCS: @(#) $Id: tkUnixRFont.c,v 1.6 2003/11/17 23:48:47 dkf Exp $ */ #include "tkUnixInt.h" @@ -98,7 +98,8 @@ InitFont(tkwin, pattern, fontPtr) char *family; int weight, slant, spacing, i; double size; - FcFontSet *set, *charset; + FcFontSet *set; + FcCharSet *charset; FcResult result; XftFont *ftFont; |