1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-28 01:35:32 +00:00

[osdep] Fix tempname declaration

This commit is contained in:
Witold Filipczyk 2022-05-07 19:34:44 +02:00
parent b9188bf98c
commit bf8355dd2b

View File

@ -1108,7 +1108,7 @@ tempname(const char *dir, const char *pfx, char *suff)
#else
#warning mkstemps does not exist, using tempnam
char *tempname(char *dir, char *pfx, char *suff) {
char *tempname(const char *dir, const char *pfx, char *suff) {
char *temp, *ret;
struct string name;