net: fix sane_init() DBG() call wrt function pointer cast to void *

merge-requests/1/head
Julien BLACHE 2010-06-23 18:21:33 +02:00
rodzic c8e15bcf7d
commit 31005330f0
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -957,8 +957,8 @@ sane_init (SANE_Int * version_code, SANE_Auth_Callback authorize)
DBG_INIT ();
DBG (2, "sane_init: authorize = %p, version_code = %p\n", (void *) authorize,
(void *) version_code);
DBG (2, "sane_init: authorize %s null, version_code %s null\n", (authorize) ? "!=" : "==",
(version_code) ? "!=" : "==");
devlist = NULL;
first_device = NULL;