git: 7861fce32b4d - main - stress2: Fix compiler warning
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 17 Mar 2023 11:07:18 UTC
The branch main has been updated by pho: URL: https://cgit.FreeBSD.org/src/commit/?id=7861fce32b4dd76fe82b405c4fa4d42b3252846c commit 7861fce32b4dd76fe82b405c4fa4d42b3252846c Author: Peter Holm <pho@FreeBSD.org> AuthorDate: 2023-03-17 11:06:52 +0000 Commit: Peter Holm <pho@FreeBSD.org> CommitDate: 2023-03-17 11:06:52 +0000 stress2: Fix compiler warning --- tools/test/stress2/lib/resources.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test/stress2/lib/resources.c b/tools/test/stress2/lib/resources.c index 935a085a58de..1888d1fba87f 100644 --- a/tools/test/stress2/lib/resources.c +++ b/tools/test/stress2/lib/resources.c @@ -149,7 +149,7 @@ usermem(void) } static void -cleanupdf() +cleanupdf(void) { unlink(dfpath); }