From 477d2636d8cca2b859d6a17d6621909d5c87b911 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Fri, 14 Aug 2009 21:04:29 +0000 Subject: [PATCH] Return B_OK on success. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32397 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/boot/platform/generic/video_splash.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/system/boot/platform/generic/video_splash.cpp b/src/system/boot/platform/generic/video_splash.cpp index 4d131ba44c..532c856c7f 100644 --- a/src/system/boot/platform/generic/video_splash.cpp +++ b/src/system/boot/platform/generic/video_splash.cpp @@ -130,5 +130,6 @@ video_display_splash(addr_t frameBuffer) height = min_c(iconsHalfHeight, gKernelArgs.frame_buffer.height); video_blit_image(frameBuffer, lowerHalfIconImage, width, height, kSplashIconsWidth, x, y); + return B_OK; }