diff options
author | Anders Larsen <al@alarsen.net> | 2009-09-26 20:15:09 +0200 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2009-11-09 09:40:57 +0100 |
commit | 891ddb95d06e9dc260500f02438a5cff1ba6650a (patch) | |
tree | 0993effca9f99c16ee74c37df72da5d925f954c3 /fs/qnx4/bitmap.c | |
parent | e0c0978699a83f26f2341f7eedc1463b79e31aff (diff) | |
download | talos-op-linux-891ddb95d06e9dc260500f02438a5cff1ba6650a.tar.gz talos-op-linux-891ddb95d06e9dc260500f02438a5cff1ba6650a.zip |
qnx4fs: add missing KERN_xxx to printk() calls
fixed printk calls to consistently specify a KERN_xxx level.
Signed-off-by: Anders Larsen <al@alarsen.net>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'fs/qnx4/bitmap.c')
-rw-r--r-- | fs/qnx4/bitmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/qnx4/bitmap.c b/fs/qnx4/bitmap.c index 0afba069d567..32f5d131a644 100644 --- a/fs/qnx4/bitmap.c +++ b/fs/qnx4/bitmap.c @@ -67,7 +67,7 @@ unsigned long qnx4_count_free_blocks(struct super_block *sb) while (total < size) { if ((bh = sb_bread(sb, start + offset)) == NULL) { - printk("qnx4: I/O error in counting free blocks\n"); + printk(KERN_ERR "qnx4: I/O error in counting free blocks\n"); break; } count_bits(bh->b_data, size - total, &total_free); |