Commit 6a847bd9 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

twain_32: Use BOOL type where appropriate.

parent 15b35f4d
......@@ -100,12 +100,12 @@ twain_add_onedriver(const char *dsname) {
FreeLibrary (hmod);
}
static int detectionrun = 0;
static BOOL detectionrun = FALSE;
static void
twain_autodetect(void) {
if (detectionrun) return;
detectionrun = 1;
detectionrun = TRUE;
twain_add_onedriver("sane.ds");
twain_add_onedriver("gphoto2.ds");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment