fuzzers: Address Clang warning -Wunused-parameter
This commit is contained in:
parent
86e0984f2b
commit
0e567d2ed1
@ -37,9 +37,14 @@ static unsigned char hash_key[16] = "FUZZING IS FUN!";
|
||||
|
||||
static void XMLCALL
|
||||
start(void *userData, const XML_Char *name, const XML_Char **atts) {
|
||||
(void)userData;
|
||||
(void)name;
|
||||
(void)atts;
|
||||
}
|
||||
static void XMLCALL
|
||||
end(void *userData, const XML_Char *name) {
|
||||
(void)userData;
|
||||
(void)name;
|
||||
}
|
||||
|
||||
int
|
||||
|
@ -38,9 +38,14 @@ static unsigned char hash_key[16] = "FUZZING IS FUN!";
|
||||
|
||||
static void XMLCALL
|
||||
start(void *userData, const XML_Char *name, const XML_Char **atts) {
|
||||
(void)userData;
|
||||
(void)name;
|
||||
(void)atts;
|
||||
}
|
||||
static void XMLCALL
|
||||
end(void *userData, const XML_Char *name) {
|
||||
(void)userData;
|
||||
(void)name;
|
||||
}
|
||||
|
||||
int
|
||||
|
Loading…
Reference in New Issue
Block a user