database/DBio.c: PaExpand() constify update call-site

This commit is contained in:
Darryl L. Miles 2024-10-12 08:48:28 +01:00 committed by Tim Edwards
parent 265ace5c9f
commit bd51438c15
1 changed files with 2 additions and 1 deletions

View File

@ -3872,7 +3872,8 @@ DBCellWrite(cellDef, fileName)
#define NAME_SIZE 1000
char *template = ".XXXXXXX";
char *realname, *tmpname, *expandname;
char *cp1, *cp2, *dotptr;
const char *cp1;
char *cp2, *dotptr;
char expandbuf[NAME_SIZE];
FILE *realf, *tmpf;
int tmpres;