spoolss: Remove an unused variable.
This commit is contained in:
parent
721e73543e
commit
deaae1f562
|
@ -266,13 +266,12 @@ static backend_t * backend_load(LPWSTR dllname, LPWSTR name, LPWSTR regroot)
|
|||
BOOL backend_load_all(void)
|
||||
{
|
||||
static BOOL failed = FALSE;
|
||||
backend_t * pb;
|
||||
|
||||
EnterCriticalSection(&backend_cs);
|
||||
|
||||
/* if we failed before, don't try again */
|
||||
if (!failed && (used_backends == 0)) {
|
||||
pb = backend_load(localsplW, NULL, NULL);
|
||||
backend_load(localsplW, NULL, NULL);
|
||||
|
||||
/* ToDo: parse the registry and load all other backends */
|
||||
|
||||
|
|
Loading…
Reference in New Issue