summaryrefslogtreecommitdiff
path: root/usr.sbin/mlxcontrol
diff options
context:
space:
mode:
authorStefan Farfeleder <stefanf@FreeBSD.org>2004-10-02 16:42:33 +0000
committerStefan Farfeleder <stefanf@FreeBSD.org>2004-10-02 16:42:33 +0000
commit24dcf06b45bf5ed2455239e5064a8ba4d92f4ef5 (patch)
tree109249d7f8c94e84a33a183ebe90b5df23162efc /usr.sbin/mlxcontrol
parentc7e17f4bbee6859d2bee32b5193ee5dd3ccb118d (diff)
downloadsrc-test2-24dcf06b45bf5ed2455239e5064a8ba4d92f4ef5.tar.gz
src-test2-24dcf06b45bf5ed2455239e5064a8ba4d92f4ef5.zip
Prefer C99's __func__ over GCC's __FUNCTION__.
Notes
Notes: svn path=/head/; revision=136057
Diffstat (limited to 'usr.sbin/mlxcontrol')
-rw-r--r--usr.sbin/mlxcontrol/mlxcontrol.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/mlxcontrol/mlxcontrol.h b/usr.sbin/mlxcontrol/mlxcontrol.h
index f0225b5b6f88..ab0f2ab4f819 100644
--- a/usr.sbin/mlxcontrol/mlxcontrol.h
+++ b/usr.sbin/mlxcontrol/mlxcontrol.h
@@ -28,7 +28,7 @@
#include <sys/queue.h>
-#define debug(fmt, args...) printf("%s: " fmt "\n", __FUNCTION__ , ##args)
+#define debug(fmt, args...) printf("%s: " fmt "\n", __func__ , ##args)
struct mlxd_foreach_action
{