summaryrefslogtreecommitdiffstats
path: root/unix/tkUnixFont.c
diff options
context:
space:
mode:
authorstanton <stanton@noemail.net>1999-03-10 07:04:38 (GMT)
committerstanton <stanton@noemail.net>1999-03-10 07:04:38 (GMT)
commitec2ba5f6728b8b5f1a252e25b4433d29c4319403 (patch)
treeb83515b886272ee3c61631f31cfe3fad937dc0a7 /unix/tkUnixFont.c
parentf7d299b766bb808ca70de46712e13469c076fcdd (diff)
downloadtk-ec2ba5f6728b8b5f1a252e25b4433d29c4319403.zip
tk-ec2ba5f6728b8b5f1a252e25b4433d29c4319403.tar.gz
tk-ec2ba5f6728b8b5f1a252e25b4433d29c4319403.tar.bz2
integrated stubs into 8.0 main branch
FossilOrigin-Name: 4c74dd207943932e6d9a6d06a3ec11b8e4459199
Diffstat (limited to 'unix/tkUnixFont.c')
-rw-r--r--unix/tkUnixFont.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tkUnixFont.c b/unix/tkUnixFont.c
index 1428b79..638db14 100644
--- a/unix/tkUnixFont.c
+++ b/unix/tkUnixFont.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkUnixFont.c,v 1.4 1998/11/25 01:48:54 stanton Exp $
+ * RCS: @(#) $Id: tkUnixFont.c,v 1.5 1999/03/10 07:04:45 stanton Exp $
*/
#include "tkPort.h"
@@ -141,7 +141,7 @@ TkpGetNativeFont(tkwin, name)
*/
hasSpace = dashes = hasWild = 0;
- for (p = name; *p != '\0'; p++) {
+ for (p = (char *) name; *p != '\0'; p++) {
if (*p == ' ') {
if (p[1] == '-') {
return NULL;