summaryrefslogtreecommitdiff
path: root/xc/lib/font/fontfile
diff options
context:
space:
mode:
authorrws <empty>1993-09-05 10:18:05 +0000
committerrws <empty>1993-09-05 10:18:05 +0000
commit4a4698c001216bf46ffbf95a00087f34578d8f31 (patch)
tree3a04504036120905a76bc6be8df5dff049bb6548 /xc/lib/font/fontfile
parent1d96408749f5896c2d4f386f2f61a5150e17899c (diff)
NULL -> 0 (NULL wasn't defined on some systems)
Diffstat (limited to 'xc/lib/font/fontfile')
-rw-r--r--xc/lib/font/fontfile/fontfile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/xc/lib/font/fontfile/fontfile.c b/xc/lib/font/fontfile/fontfile.c
index e10e2fb33..119725a6f 100644
--- a/xc/lib/font/fontfile/fontfile.c
+++ b/xc/lib/font/fontfile/fontfile.c
@@ -1,5 +1,5 @@
/*
- * $XConsortium: fontfile.c,v 1.11 93/08/24 18:49:20 gildea Exp $
+ * $XConsortium: fontfile.c,v 1.12 93/09/04 09:45:06 gildea Exp $
*
* Copyright 1991 Massachusetts Institute of Technology
*
@@ -159,7 +159,7 @@ FontFileOpenFont (client, fpe, flags, name, namelen, format, fmask,
(vals.values_supplied & POINTSIZE_MASK) == POINTSIZE_ARRAY ||
(vals.values_supplied &
~SIZE_SPECIFY_MASK & ~CHARSUBSET_SPECIFIED))
- scaled = NULL;
+ scaled = 0;
else
scaled = FontFileFindScaledInstance (entry, &vals,
noSpecificSize);
@@ -239,7 +239,7 @@ FontFileOpenFont (client, fpe, flags, name, namelen, format, fmask,
{
if (FontFileAddScaledInstance (entry, &vals,
*pFont, (char *) 0))
- ranges = NULL;
+ ranges = 0;
else
(*pFont)->fpePrivate = (pointer) 0;
}