summaryrefslogtreecommitdiffstats
path: root/sal/osl/w32/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'sal/osl/w32/util.c')
-rw-r--r--sal/osl/w32/util.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sal/osl/w32/util.c b/sal/osl/w32/util.c
index f4d8cbf52d20..08cda15ba0ef 100644
--- a/sal/osl/w32/util.c
+++ b/sal/osl/w32/util.c
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -29,9 +30,10 @@
-extern sal_Bool SAL_CALL osl_getEthernetAddress( sal_uInt8 *pAddr )
+extern sal_Bool SAL_CALL osl_getEthernetAddress( sal_uInt8* pAddr )
{
- pAddr = pAddr; /* avoid warnings */
+ (void)pAddr; //unused, but part of the API/ABI
return sal_False;
}
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */