From c8b919aba27a41adb7f75aeace358e4d31c47b76 Mon Sep 17 00:00:00 2001 From: Andrew Bardsley Date: Fri, 12 Sep 2014 10:22:47 -0400 Subject: style: Fix line continuation, especially in debug messages This patch closes a number of space gaps in debug messages caused by the incorrect use of line continuation within strings. (There's also one consistency change to a similar, but correct, use of line continuation) --- src/dev/arm/pl111.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/dev/arm/pl111.cc') diff --git a/src/dev/arm/pl111.cc b/src/dev/arm/pl111.cc index 6abc9b4ac..4d1bcba1e 100644 --- a/src/dev/arm/pl111.cc +++ b/src/dev/arm/pl111.cc @@ -196,8 +196,8 @@ Pl111::read(PacketPtr pkt) data = lcdPalette[index]; break; } else { - panic("Tried to read CLCD register at offset %#x that \ - doesn't exist\n", daddr); + panic("Tried to read CLCD register at offset %#x that " + "doesn't exist\n", daddr); break; } } @@ -369,8 +369,8 @@ Pl111::write(PacketPtr pkt) lcdPalette[index] = data; break; } else { - panic("Tried to write PL111 register at offset %#x that \ - doesn't exist\n", daddr); + panic("Tried to write PL111 register at offset %#x that " + "doesn't exist\n", daddr); break; } } -- cgit v1.2.3