diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-11-27 00:27:43 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-11-27 00:30:06 -0500 |
commit | 9ca7a065beaee93969b39117a7f6d466ff2fb171 (patch) | |
tree | 6d251971996f0d496b8c8e1472f378c0d601b745 /ldso/include | |
parent | a796d26367ceac79898a832d9f01fe25f5c4f02a (diff) |
ldso: use __func__ rather than __FUNCTION__
The former is part of a standard (C99) while the latter is not.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'ldso/include')
-rw-r--r-- | ldso/include/ldso.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/include/ldso.h b/ldso/include/ldso.h index 9fecff96c..4c091779d 100644 --- a/ldso/include/ldso.h +++ b/ldso/include/ldso.h @@ -102,7 +102,7 @@ extern char *_dl_debug_nofixups; extern char *_dl_debug_bindings; extern int _dl_debug_file; # define __dl_debug_dprint(fmt, args...) \ - _dl_dprintf(_dl_debug_file, "%s:%i: " fmt, __FUNCTION__, __LINE__, ## args); + _dl_dprintf(_dl_debug_file, "%s:%i: " fmt, __func__, __LINE__, ## args); # define _dl_if_debug_dprint(fmt, args...) \ do { if (_dl_debug) __dl_debug_dprint(fmt, ## args); } while (0) #else |