rgblink: Don't allocate unnecessary buffer. Delete unused flag.

This commit is contained in:
Anthony J. Bentley
2014-09-23 22:17:43 -06:00
parent 2bf31870a7
commit 284600ef1f

View File

@@ -7,8 +7,7 @@
#include "link/main.h" #include "link/main.h"
#include "link/assign.h" #include "link/assign.h"
char tzOutname[_MAX_PATH]; char *tzOutname;
BBOOL oOutput = 0;
void void
writehome(FILE * f) writehome(FILE * f)
@@ -71,8 +70,7 @@ writebank(FILE * f, SLONG bank)
void void
out_Setname(char *tzOutputfile) out_Setname(char *tzOutputfile)
{ {
strcpy(tzOutname, tzOutputfile); tzOutname = tzOutputfile;
oOutput = 1;
} }
void void