diff options
author | Frediano Ziglio <fziglio@redhat.com> | 2016-09-12 12:28:26 +0100 |
---|---|---|
committer | Frediano Ziglio <fziglio@redhat.com> | 2017-04-12 15:49:02 +0100 |
commit | d86f38f89c118bb6266611a604cc5bb1f0555e60 (patch) | |
tree | 6250c69f7174839c9ebfa74aaa20f500a1fef7dc | |
parent | 68e422f3b87506387650b46258a203ab109d557f (diff) |
Remove unused DebugPrintFunc function
Signed-off-by: Frediano Ziglio <fziglio@redhat.com>
Acked-by: Yuri Benditovich <yuri.benditovich@daynix.com>
-rwxr-xr-x | qxldod/driver.cpp | 7 | ||||
-rwxr-xr-x | qxldod/driver.h | 1 |
2 files changed, 0 insertions, 8 deletions
diff --git a/qxldod/driver.cpp b/qxldod/driver.cpp index 4e46d51..b6a9b95 100755 --- a/qxldod/driver.cpp +++ b/qxldod/driver.cpp @@ -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, ...)
{
static const ULONG xlate[] = { 0, 0, 1, 2, 3 };
diff --git a/qxldod/driver.h b/qxldod/driver.h index 2dcbda4..d92f5c8 100755 --- a/qxldod/driver.h +++ b/qxldod/driver.h @@ -236,7 +236,6 @@ DodGetScanLine( extern int nDebugLevel;
void DebugPrintFuncSerial(const char *format, ...);
-void DebugPrintFunc(const char *format, ...);
void DebugPrint(int level, const char *fmt, ...);
#define DbgExpandArguments(...) __VA_ARGS__
|