diff options
Diffstat (limited to 'vmsify.c')
-rw-r--r-- | vmsify.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -134,7 +134,7 @@ trnlog (char *name) } reslt[resltlen] = '\0'; - s = (char *)malloc (resltlen+1); + s = malloc (resltlen+1); if (s == 0) return ""; strcpy (s, reslt); |