diff options
| author | Andrew Morton <akpm@osdl.org> | 2004-04-12 01:01:04 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-04-12 01:01:04 -0700 |
| commit | 93616c25b89090f28ad3ee509c33d69bddbeb7a8 (patch) | |
| tree | c8fdcfef7ebf536701845bc037d719c678c9c3bd /include/linux | |
| parent | a562b03a367cac8c622316177a2d8846f3ba33a2 (diff) | |
[PATCH] remove concatenation with __FUNCTION__ include/*
From: Tony Breeds <tony@bakeyournoodle.com>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/jbd.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/jbd.h b/include/linux/jbd.h index 62c7f363ae74..e9f6c69f79db 100644 --- a/include/linux/jbd.h +++ b/include/linux/jbd.h @@ -1012,10 +1012,10 @@ extern int cleanup_journal_tail(journal_t *); /* Debugging code only: */ #define jbd_ENOSYS() \ -do { \ - printk (KERN_ERR "JBD unimplemented function " __FUNCTION__); \ - current->state = TASK_UNINTERRUPTIBLE; \ - schedule(); \ +do { \ + printk (KERN_ERR "JBD unimplemented function %s\n", __FUNCTION__); \ + current->state = TASK_UNINTERRUPTIBLE; \ + schedule(); \ } while (1) /* |
