Revert "Marked unused parameters"

This reverts commit 3a61d104d4.
This commit is contained in:
thorkill 2015-06-30 18:09:50 +02:00
parent 3eb3cc7898
commit 5dac5eb451
2 changed files with 1 additions and 10 deletions

View file

@ -28,7 +28,6 @@
#include "logger.h"
#include "prf.h"
#include "sptps.h"
#include "utils.h"
unsigned int sptps_replaywin = 16;
@ -53,15 +52,9 @@ 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);
}