diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-04-28 13:16:16 +0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 19:58:45 +0400 |
commit | 08fc99bfc39d5b394aa27498ac5f14df0ef8e52a (patch) | |
tree | 3749ce01f8cb60e3cf08c95f3f4076e21ad62ee7 /fs/jbd/revoke.c | |
parent | e05b6b524bd5c5c2bae1b64a7cbe08d46d57a6fe (diff) | |
download | linux-08fc99bfc39d5b394aa27498ac5f14df0ef8e52a.tar.xz |
jbd: replace remaining __FUNCTION__ occurrences
__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Cc: <linux-ext4@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/jbd/revoke.c')
-rw-r--r-- | fs/jbd/revoke.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jbd/revoke.c b/fs/jbd/revoke.c index d5f8eee7c88c..1bb43e987f4b 100644 --- a/fs/jbd/revoke.c +++ b/fs/jbd/revoke.c @@ -138,7 +138,7 @@ repeat: oom: if (!journal_oom_retry) return -ENOMEM; - jbd_debug(1, "ENOMEM in %s, retrying\n", __FUNCTION__); + jbd_debug(1, "ENOMEM in %s, retrying\n", __func__); yield(); goto repeat; } |