replace a missing / when producing files.dat

This commit is contained in:
Bill Currie 2001-05-22 18:23:29 +00:00
parent c500fd7479
commit 351e70b3bd

View file

@ -85,7 +85,7 @@ WriteFiles (void)
int i;
char filename[1024];
sprintf (filename, "%sfiles.dat", sourcedir);
sprintf (filename, "%s/files.dat", sourcedir);
f = fopen (filename, "w");
if (!f)
Error ("Couldn't open %s", filename);