diff options
| author | Mark Brown <[email protected]> | 2017-01-09 12:20:41 +0000 |
|---|---|---|
| committer | Mark Brown <[email protected]> | 2017-01-09 12:20:41 +0000 |
| commit | 5c47e3cfd4f9d12e9f594d99118c1381c163ff98 (patch) | |
| tree | a7650ab5c0fa3a6a3841de8e8693041b3e009054 /kernel/sysctl_binary.c | |
| parent | fafd67940774733fa97f4b09412aea6981b82e0a (diff) | |
| parent | 7ce7d89f48834cefece7804d38fc5d85382edf77 (diff) | |
Merge tag 'v4.10-rc1' into spi-s3c64xx
Linux 4.10-rc1
Diffstat (limited to 'kernel/sysctl_binary.c')
| -rw-r--r-- | kernel/sysctl_binary.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/sysctl_binary.c b/kernel/sysctl_binary.c index 6eb99c17dbd8..ece4b177052b 100644 --- a/kernel/sysctl_binary.c +++ b/kernel/sysctl_binary.c @@ -1354,8 +1354,8 @@ static void deprecated_sysctl_warning(const int *name, int nlen) "warning: process `%s' used the deprecated sysctl " "system call with ", current->comm); for (i = 0; i < nlen; i++) - printk("%d.", name[i]); - printk("\n"); + printk(KERN_CONT "%d.", name[i]); + printk(KERN_CONT "\n"); } return; } |