# HG changeset patch # User Yoshiki Yazawa # Date 1241160507 -32400 # Node ID 8c018844df9ab2d082ea9ef1d34bec969d104d5c # Parent ffc44762e706b4efa75f505c29113dc648396886 Backed out changeset ffc44762e706 diff -r ffc44762e706 -r 8c018844df9a src/image.c --- a/src/image.c Mon Apr 13 22:40:47 2009 +0000 +++ b/src/image.c Fri May 01 15:48:27 2009 +0900 @@ -243,7 +243,7 @@ screen_type = COLOR_PROFILE_MEM; DEBUG_1("Using X11 screen profile, length: %d", screen_profile_len); } - else if (options->color_profile.screen_file && + if (options->color_profile.screen_file && is_readable_file(options->color_profile.screen_file)) { screen_type = COLOR_PROFILE_FILE; @@ -348,10 +348,10 @@ #if 0 if (run_in_bg) color_man_start_bg(imd->cm, image_post_process_color_cb, imd); #endif + return TRUE; } - image_update_util(imd); - return !!cm; + return FALSE; }