realloc -> trealloc

This commit is contained in:
Holger Vogt 2017-11-05 14:19:34 +01:00
parent 279cec070c
commit fd97074ba1
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ com_hardcopy(wordlist *wl)
psfname[2] = 's';
psfname[3] = '\0';
} else {
fname = realloc(fname, strlen(fname)+4);
fname = trealloc(fname, strlen(fname)+4);
strcat(fname, ".ps");
}
tempgraph->devdep = fname;