forked from Telodendria/Telodendria
Apply #70: Fix warnings of unused variables.
This commit is contained in:
parent
2f946848cb
commit
1f14169284
1 changed files with 6 additions and 0 deletions
|
@ -38,6 +38,9 @@ static void
|
|||
HexDump(size_t off, char *hexBuf , char *asciiBuf, void *args)
|
||||
{
|
||||
char *fmt;
|
||||
|
||||
(void) args;
|
||||
|
||||
if (hexBuf && asciiBuf)
|
||||
{
|
||||
fmt = "%04lx: | %s | %s |";
|
||||
|
@ -56,6 +59,8 @@ TelodendriaMemoryHook(MemoryAction a, MemoryInfo * i, void *args)
|
|||
char *action;
|
||||
int err = 0;
|
||||
|
||||
(void) args;
|
||||
|
||||
switch (a)
|
||||
{
|
||||
case MEMORY_ALLOCATE:
|
||||
|
@ -129,6 +134,7 @@ TestFunc(Array *path, void *argp)
|
|||
DbRef *ref;
|
||||
|
||||
(void) args;
|
||||
(void) path;
|
||||
|
||||
Log(LOG_INFO, "%s %s", HttpRequestMethodToString(method),
|
||||
HttpRequestPath(cx));
|
||||
|
|
Loading…
Reference in a new issue