|
@@ -217,7 +217,7 @@ void ia64_mca_printk(const char *fmt, ...)
|
|
|
/* Copy the output into mlogbuf */
|
|
|
if (oops_in_progress) {
|
|
|
/* mlogbuf was abandoned, use printk directly instead. */
|
|
|
- printk(temp_buf);
|
|
|
+ printk("%s", temp_buf);
|
|
|
} else {
|
|
|
spin_lock(&mlogbuf_wlock);
|
|
|
for (p = temp_buf; *p; p++) {
|
|
@@ -268,7 +268,7 @@ void ia64_mlogbuf_dump(void)
|
|
|
}
|
|
|
*p = '\0';
|
|
|
if (temp_buf[0])
|
|
|
- printk(temp_buf);
|
|
|
+ printk("%s", temp_buf);
|
|
|
mlogbuf_start = index;
|
|
|
|
|
|
mlogbuf_timestamp = 0;
|