From 477d68100ba4f9e3f9d93c42601f828428a8fc99 Mon Sep 17 00:00:00 2001 From: Jens-Heiner Rechtien Date: Tue, 3 Feb 2004 12:36:16 +0000 Subject: INTEGRATION: CWS sal05 (1.2.186); FILE MERGED 2003/11/03 12:31:11 tra 1.2.186.1: #112918#removed most warnings that will be generated when compiling osl with -Wall, explicitly disabled the following warnings which have been regarded as unnecessary 4820, 4668, 4711, 4201, 4217, 4710, 4619, 4514 --- sal/osl/w32/util.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'sal/osl/w32/util.c') diff --git a/sal/osl/w32/util.c b/sal/osl/w32/util.c index c74fd9f9cb89..32d0247682f3 100644 --- a/sal/osl/w32/util.c +++ b/sal/osl/w32/util.c @@ -2,9 +2,9 @@ * * $RCSfile: util.c,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: mfe $ $Date: 2001-02-28 12:55:05 $ + * last change: $Author: hr $ $Date: 2004-02-03 13:36:16 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -65,11 +65,16 @@ extern sal_Bool osl_getEtherAddr(sal_Char* pszAddr, sal_uInt16 BufferSize) { + /* avoid warnings */ + pszAddr = pszAddr; + BufferSize = BufferSize; + return sal_False; } extern sal_Bool SAL_CALL osl_getEthernetAddress( sal_uInt8 *pAddr ) { + pAddr = pAddr; /* avoid warnings */ return sal_False; } -- cgit