typo in debug message fixed

This commit is contained in:
Sergey Bolshakov 2008-03-13 14:57:19 +03:00
parent dd757bba09
commit d5799f185f

View File

@ -375,7 +375,7 @@ int update_splash()
return 0;
splashstep++;
progress = (65534 * splashstep ) / splashcount;
log_message("boostplash progress: %i",progress);
log_message("bootsplash progress: %i",progress);
sprintf(data,"show %i\n",progress);
return write(splashfd,data,strlen(data));
}