Remove unused DebugPrintFunc function

Signed-off-by: Frediano Ziglio <fziglio@redhat.com>
Acked-by: Yuri Benditovich <yuri.benditovich@daynix.com>
This commit is contained in:
Frediano Ziglio 2016-09-12 12:28:26 +01:00
parent 68e422f3b8
commit d86f38f89c
2 changed files with 0 additions and 8 deletions

View File

@ -766,13 +766,6 @@ void DebugPrintFuncSerial(const char *format, ...)
} }
} }
void DebugPrintFunc(const char *format, ...)
{
va_list list;
va_start(list, format);
vDbgPrintEx(DPFLTR_DEFAULT_ID, 9 | DPFLTR_MASK, format, list);
}
void DebugPrint(int level, const char *fmt, ...) void DebugPrint(int level, const char *fmt, ...)
{ {
static const ULONG xlate[] = { 0, 0, 1, 2, 3 }; static const ULONG xlate[] = { 0, 0, 1, 2, 3 };

View File

@ -236,7 +236,6 @@ DodGetScanLine(
extern int nDebugLevel; extern int nDebugLevel;
void DebugPrintFuncSerial(const char *format, ...); void DebugPrintFuncSerial(const char *format, ...);
void DebugPrintFunc(const char *format, ...);
void DebugPrint(int level, const char *fmt, ...); void DebugPrint(int level, const char *fmt, ...);
#define DbgExpandArguments(...) __VA_ARGS__ #define DbgExpandArguments(...) __VA_ARGS__