From 2e041e883b5b092f3ca70dcbeaab42c6916433ce Mon Sep 17 00:00:00 2001 From: bjh21 Date: Sat, 17 Feb 2001 18:45:19 +0000 Subject: [PATCH] Correct return type of arcvideo_show_screen(). --- sys/arch/arm26/vidc/arcvideo.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/arch/arm26/vidc/arcvideo.c b/sys/arch/arm26/vidc/arcvideo.c index fc4cf556985c..cb1ec8e89725 100644 --- a/sys/arch/arm26/vidc/arcvideo.c +++ b/sys/arch/arm26/vidc/arcvideo.c @@ -1,4 +1,4 @@ -/* $NetBSD: arcvideo.c,v 1.14 2001/02/17 18:43:13 bjh21 Exp $ */ +/* $NetBSD: arcvideo.c,v 1.15 2001/02/17 18:45:19 bjh21 Exp $ */ /*- * Copyright (c) 1998, 2000 Ben Harris * All rights reserved. @@ -39,7 +39,7 @@ #include -__RCSID("$NetBSD: arcvideo.c,v 1.14 2001/02/17 18:43:13 bjh21 Exp $"); +__RCSID("$NetBSD: arcvideo.c,v 1.15 2001/02/17 18:45:19 bjh21 Exp $"); #include #include @@ -81,7 +81,7 @@ static int arcvideo_alloc_screen(void *cookie, const struct wsscreen_descr *scr, void **scookiep, int *curxp, int *curyp, long *defattrp); static void arcvideo_free_screen(void *cookie, void *scookie); -static void arcvideo_show_screen(void *cookie, void *scookie, int waitok, +static int arcvideo_show_screen(void *cookie, void *scookie, int waitok, void (*cb)(void *, int, int), void *cbarg); static int arcvideo_load_font(void *cookie, void *scookie, @@ -450,7 +450,7 @@ arcvideo_free_screen(void *cookie, void *scookie) panic("arcvideo_free_screen not implemented"); } -static void +static int arcvideo_show_screen(void *cookie, void *scookie, int waitok, void (*cb)(void *cbarg, int error, int waitok), void *cbarg) {