Marked unused parameters
This commit is contained in:
parent
f755d57f4e
commit
3a61d104d4
2 changed files with 10 additions and 1 deletions
|
|
@ -28,6 +28,7 @@
|
|||
#include "logger.h"
|
||||
#include "prf.h"
|
||||
#include "sptps.h"
|
||||
#include "utils.h"
|
||||
|
||||
unsigned int sptps_replaywin = 16;
|
||||
|
||||
|
|
@ -52,9 +53,15 @@ unsigned int sptps_replaywin = 16;
|
|||
*/
|
||||
|
||||
void sptps_log_quiet(sptps_t *s, int s_errno, const char *format, va_list ap) {
|
||||
UNUSED(s);
|
||||
UNUSED(s_errno);
|
||||
UNUSED(format);
|
||||
UNUSED(ap);
|
||||
}
|
||||
|
||||
void sptps_log_stderr(sptps_t *s, int s_errno, const char *format, va_list ap) {
|
||||
UNUSED(s);
|
||||
UNUSED(s_errno);
|
||||
vfprintf(stderr, format, ap);
|
||||
fputc('\n', stderr);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue