summaryrefslogtreecommitdiff
path: root/psgeom.c
diff options
context:
space:
mode:
Diffstat (limited to 'psgeom.c')
-rw-r--r--psgeom.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/psgeom.c b/psgeom.c
index 0365cee..1265a5c 100644
--- a/psgeom.c
+++ b/psgeom.c
@@ -869,7 +869,7 @@ PSPageTrailer(FILE *out, PSState *state)
if (sName == NULL)
sName = "(unknown)";
- lbuf = uAlloc(10 + strlen(sName));
+ lbuf = malloc(10 + strlen(sName));
if (!lbuf) {
uFatalError("Can't allocate memory for string\n");
}
@@ -904,7 +904,7 @@ PSPageTrailer(FILE *out, PSState *state)
if (sName == NULL)
sName = "(unknown)";
- lbuf = uAlloc(12 + strlen(sName));
+ lbuf = malloc(12 + strlen(sName));
if (!lbuf) {
uFatalError("Can't allocate memory for string\n");
}