diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-03-05 18:03:59 -0500 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2008-04-18 06:26:07 -0400 |
commit | dd6f953adb5c4deb9cd7b6a5054e7d5eafe4ed71 (patch) | |
tree | 0ed459ca8da43b7e0486c8f0a840845a731920bf /security/root_plug.c | |
parent | b0c636b99997c8594da6a46e166ce4fcf6956fda (diff) |
security: replace remaining __FUNCTION__ occurrences
__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Cc: James Morris <jmorris@namei.org>
Cc: Stephen Smalley <sds@tycho.nsa.gov>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security/root_plug.c')
-rw-r--r-- | security/root_plug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/root_plug.c b/security/root_plug.c index 870f13095bb6..6112d1404c81 100644 --- a/security/root_plug.c +++ b/security/root_plug.c | |||
@@ -49,7 +49,7 @@ module_param(debug, bool, 0600); | |||
49 | do { \ | 49 | do { \ |
50 | if (debug) \ | 50 | if (debug) \ |
51 | printk(KERN_DEBUG "%s: %s: " fmt , \ | 51 | printk(KERN_DEBUG "%s: %s: " fmt , \ |
52 | MY_NAME , __FUNCTION__ , \ | 52 | MY_NAME , __func__ , \ |
53 | ## arg); \ | 53 | ## arg); \ |
54 | } while (0) | 54 | } while (0) |
55 | 55 | ||