From 5847b78fb2f38478babd5079e96512f785d03bad Mon Sep 17 00:00:00 2001 From: shatty Date: Wed, 31 Dec 2003 11:22:31 +0000 Subject: [PATCH] add static to remove warning git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5847 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/accelerants/neomagic/engine/nm_general.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/add-ons/accelerants/neomagic/engine/nm_general.c b/src/add-ons/accelerants/neomagic/engine/nm_general.c index ef1d5ec9e8..fcd0473347 100644 --- a/src/add-ons/accelerants/neomagic/engine/nm_general.c +++ b/src/add-ons/accelerants/neomagic/engine/nm_general.c @@ -6,7 +6,7 @@ #include "nm_std.h" -status_t test_ram(); +static status_t test_ram(void); static status_t nm_general_powerup (void); static status_t mn_general_bios_to_powergraphics(void); @@ -103,7 +103,7 @@ status_t mn_general_powerup() return status; } -status_t test_ram() +static status_t test_ram(void) { uint32 value, offset; status_t result = B_OK;