summaryrefslogtreecommitdiff
path: root/src/kern/linux
diff options
context:
space:
mode:
Diffstat (limited to 'src/kern/linux')
-rw-r--r--src/kern/linux/printk.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kern/linux/printk.cc b/src/kern/linux/printk.cc
index adc2009df..788a343b3 100644
--- a/src/kern/linux/printk.cc
+++ b/src/kern/linux/printk.cc
@@ -101,6 +101,7 @@ Printk(stringstream &out, Arguments args)
break;
case 'P':
format = true;
+ M5_FALLTHROUGH;
case 'p':
hexnum = true;
break;
@@ -258,4 +259,3 @@ Printk(stringstream &out, Arguments args)
}
}
-