mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Remove check for __CC_SUPPORTS___FUNC__.
__func__ is part of C99. PR: 263102 (exp-run) Reviewed by: brooks, imp, emaste Differential Revision: https://reviews.freebsd.org/D34801
This commit is contained in:
parent
b8717a8709
commit
87445068f9
1 changed files with 1 additions and 1 deletions
|
|
@ -69,7 +69,7 @@ __FBSDID("$FreeBSD$");
|
|||
* Enable debugging by defining ICHSMB_DEBUG to a non-zero value.
|
||||
*/
|
||||
#define ICHSMB_DEBUG 0
|
||||
#if ICHSMB_DEBUG != 0 && defined(__CC_SUPPORTS___FUNC__)
|
||||
#if ICHSMB_DEBUG != 0
|
||||
#define DBG(fmt, args...) \
|
||||
do { printf("%s: " fmt, __func__ , ## args); } while (0)
|
||||
#else
|
||||
|
|
|
|||
Loading…
Reference in a new issue