logo

utils-std

Collection of commonly available Unix tools git clone https://anongit.hacktivis.me/git/utils-std.git/
commit: 1e64470ce8647c3eaa7deb34ecab81fed45b1be6
parent b6f3f2b6845e36e3a28846dee3c73ed5140c6efa
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Thu,  1 Jan 2026 12:07:10 +0100

configure.d/mkstemps.c: second arg is int not size_t

Diffstat:

Mconfigure.d/mkstemps.c2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.d/mkstemps.c b/configure.d/mkstemps.c @@ -11,7 +11,7 @@ int main(void) { char template[] = "mktemp_XXXXXX.c"; - size_t suffix = 2; + int suffix = 2; return mkstemps(template, suffix); }