summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2003-11-17 23:48:46 (GMT)
committerdkf <dkf@noemail.net>2003-11-17 23:48:46 (GMT)
commit1849faa84c9662e6ef984e22e4d8206dc29e4c1b (patch)
tree906d1ec8ea17d1ae87cb823613b9644f7eb94224
parenta501881442418d4edac8850c6622c0ddbbfdce44 (diff)
downloadtk-1849faa84c9662e6ef984e22e4d8206dc29e4c1b.zip
tk-1849faa84c9662e6ef984e22e4d8206dc29e4c1b.tar.gz
tk-1849faa84c9662e6ef984e22e4d8206dc29e4c1b.tar.bz2
Removed stupid type error introduced when adding style to code.
FossilOrigin-Name: 5f8d799df1485106d29d2de17a8d6c31360c26d5
-rw-r--r--unix/tkUnixRFont.c5
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;