diff options
author | Andrew Bardsley <Andrew.Bardsley@arm.com> | 2014-09-12 10:22:47 -0400 |
---|---|---|
committer | Andrew Bardsley <Andrew.Bardsley@arm.com> | 2014-09-12 10:22:47 -0400 |
commit | c8b919aba27a41adb7f75aeace358e4d31c47b76 (patch) | |
tree | 49f918dad678e83f7d04e58f20f863519d412f6f /src/dev/ns_gige.cc | |
parent | 2b4906fc64984f9970186e6894f19f0f677a9fd4 (diff) | |
download | gem5-c8b919aba27a41adb7f75aeace358e4d31c47b76.tar.xz |
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)
Diffstat (limited to 'src/dev/ns_gige.cc')
-rw-r--r-- | src/dev/ns_gige.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dev/ns_gige.cc b/src/dev/ns_gige.cc index 9a6ea5c6b..f180b0ecd 100644 --- a/src/dev/ns_gige.cc +++ b/src/dev/ns_gige.cc @@ -732,8 +732,8 @@ NSGigE::write(PacketPtr pkt) = (uint8_t)(reg >> 8); break; } - panic("writing RFDR for something other than pattern matching\ - or hashing! %#x\n", rfaddr); + panic("writing RFDR for something other than pattern matching " + "or hashing! %#x\n", rfaddr); } case BRAR: |