comparison src/window.c @ 673:fbebf5cf4a55

Do not use printf() directly but use new wrapper function log_printf() instead.
author zas_
date Fri, 16 May 2008 12:16:49 +0000
parents 8268cbe682f1
children 5042236af960
comparison
equal deleted inserted replaced
672:913eb0ba99a6 673:fbebf5cf4a55
183 i += 2; 183 i += 2;
184 } 184 }
185 185
186 if (!result) 186 if (!result)
187 { 187 {
188 printf("Unable to detect an installed browser.\n"); 188 log_printf("Unable to detect an installed browser.\n");
189 return; 189 return;
190 } 190 }
191 191
192 help_browser_command(result, GQ_HTMLDIR "/index.html"); 192 help_browser_command(result, GQ_HTMLDIR "/index.html");
193 193