From 5c4a314c1411db50d322a77fb0006d972bd06d21 Mon Sep 17 00:00:00 2001 From: Paulo Cesar Pereira de Andrade Date: Sat, 15 Mar 2008 19:37:35 -0300 Subject: [PATCH] Minor compile warning fix. Declare src/tseng_cursor.c:TsengLoadCursorImage() as a static function, following pattern of other functions in the same file, to avoid warning of function definition without a prototype. --- src/tseng_cursor.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/tseng_cursor.c b/src/tseng_cursor.c index a3496ec..b5ff1d9 100644 --- a/src/tseng_cursor.c +++ b/src/tseng_cursor.c @@ -160,7 +160,7 @@ TsengSetCursorColors(ScrnInfoPtr pScrn, int bg, int fg) } } -void +static void TsengLoadCursorImage(ScrnInfoPtr pScrn, unsigned char *bits) { vgaHWPtr hwp = VGAHWPTR(pScrn); -- 1.5.3.2