We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
sign.c:67:5: error: implicit declaration of function '_chsize_s' [-Werror=implicit-function-declaration]
1 parent c37b6ae commit ade59b5Copy full SHA for ade59b5
1 file changed
tools/keytools/sign.c
@@ -64,7 +64,7 @@ static inline int fp_truncate(FILE *f, size_t len)
64
if (f == NULL)
65
return -1;
66
fd = _fileno(f);
67
- return _chsize_s(fd, len);
+ return _chsize(fd, len);
68
}
69
#else
70
#define HAVE_MMAP 1
0 commit comments