Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 19 Mar 2002 01:28:47 -0800 (PST)
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 7932 for review
Message-ID:  <200203190928.g2J9Sl880116@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=7932

Change 7932 by peter@peter_overcee on 2002/03/19 01:28:29

	evil nasty hack to deal with abuse of __func__ in dev/acpica/*

Affected files ...

... //depot/projects/ia64/sys/contrib/dev/acpica/acmacros.h#4 edit

Differences ...

==== //depot/projects/ia64/sys/contrib/dev/acpica/acmacros.h#4 (text+ko) ====

@@ -472,7 +472,8 @@
 
 #define ACPI_FUNCTION_NAME(a)           ACPI_DEBUG_PRINT_INFO _Dbg;     \
                                         _Dbg.ComponentId = _COMPONENT;  \
-                                        _Dbg.ProcName    = a;           \
+                                        _Dbg.ProcName    =              \
+					   (NATIVE_CHAR *)(uintptr_t)a; \
                                         _Dbg.ModuleName  = _THIS_MODULE;
 
 #define ACPI_FUNCTION_TRACE(a)          ACPI_FUNCTION_NAME(a)\

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200203190928.g2J9Sl880116>