sane.ds: Downgrade inappropriate FIXMEs.

This commit is contained in:
Jeremy White 2009-03-02 16:47:47 -06:00 committed by Alexandre Julliard
parent 3c80f741c2
commit 29df246005
1 changed files with 2 additions and 2 deletions

View File

@ -656,7 +656,7 @@ static TW_UINT16 SANE_OpenDS( pTW_IDENTITY pOrigin, pTW_IDENTITY self) {
break;
}
if (!sane_devlist[i]) {
FIXME("Scanner not found.\n");
WARN("Scanner not found.\n");
return TWRC_FAILURE;
}
status = psane_open(sane_devlist[i]->name,&activeDS.deviceHandle);
@ -665,7 +665,7 @@ static TW_UINT16 SANE_OpenDS( pTW_IDENTITY pOrigin, pTW_IDENTITY self) {
activeDS.twCC = TWRC_SUCCESS;
return TWRC_SUCCESS;
}
FIXME("sane_open(%s): %s\n", sane_devlist[i]->name, psane_strstatus (status));
ERR("sane_open(%s): %s\n", sane_devlist[i]->name, psane_strstatus (status));
return TWRC_FAILURE;
}
#endif