realloc -> trealloc
This commit is contained in:
parent
279cec070c
commit
fd97074ba1
|
|
@ -73,7 +73,7 @@ com_hardcopy(wordlist *wl)
|
||||||
psfname[2] = 's';
|
psfname[2] = 's';
|
||||||
psfname[3] = '\0';
|
psfname[3] = '\0';
|
||||||
} else {
|
} else {
|
||||||
fname = realloc(fname, strlen(fname)+4);
|
fname = trealloc(fname, strlen(fname)+4);
|
||||||
strcat(fname, ".ps");
|
strcat(fname, ".ps");
|
||||||
}
|
}
|
||||||
tempgraph->devdep = fname;
|
tempgraph->devdep = fname;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue