git: 637e67246a69 - stable/12 - tools/test/upsdl: fix compiler warnings

From: Alan Somers <asomers_at_FreeBSD.org>
Date: Fri, 19 Aug 2022 22:32:22 UTC
The branch stable/12 has been updated by asomers:

URL: https://cgit.FreeBSD.org/src/commit/?id=637e67246a69927282e42cdb09e601b044b0769c

commit 637e67246a69927282e42cdb09e601b044b0769c
Author:     Alan Somers <asomers@FreeBSD.org>
AuthorDate: 2021-09-14 20:50:01 +0000
Commit:     Alan Somers <asomers@FreeBSD.org>
CommitDate: 2022-08-19 22:32:10 +0000

    tools/test/upsdl: fix compiler warnings
    
    Sponsored by:   Axcient
    
    (cherry picked from commit 5dc5f849be9047309d32c4df8e7ee617c27ec43f)
---
 tools/test/upsdl/upsdl.c | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/tools/test/upsdl/upsdl.c b/tools/test/upsdl/upsdl.c
index fc4a761e450b..960b034ffcfe 100644
--- a/tools/test/upsdl/upsdl.c
+++ b/tools/test/upsdl/upsdl.c
@@ -32,20 +32,21 @@
 #include <sys/stat.h>
 #include <fcntl.h>
 #include <stdio.h>
+#include <stdlib.h>
 #include <sys/mman.h>
 
 
-int prepareFile(char* filename,int* fdp);
+int prepareFile(const char* filename,int* fdp);
 int mapBuffer(char** bufferp,int fd1,int fd2);
 int startIO(int fd,char *buffer);
 
-int pagesize;
+static int pagesize;
 
 #define FILESIZE (32*1024)
-char wbuffer[FILESIZE];
+static char wbuffer[FILESIZE];
 
 /* Create a FILESIZE sized file - then remove file data from the cache*/
-int prepareFile(char* filename,int* fdp)
+int prepareFile(const char* filename,int* fdp)
 {
   int fd;
   int len;
@@ -134,7 +135,7 @@ int startIO(int fd,char *buffer)
 }
 
 
-int main(int argc,char *argv[],char *envp[])
+int main(int argc __unused, char *argv[] __unused)
 {
 
   int fdA,fdB,fdDelayA,fdDelayB;