Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GCC 8][L1Trigger] Fix build error #23291

Merged
merged 1 commit into from May 23, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions L1Trigger/RegionalCaloTrigger/plugins/L1RCTLutWriter.cc
Expand Up @@ -255,7 +255,7 @@ L1RCTLutWriter::writeRcLutFile(unsigned short card)

// don't mess yet with name
char filename[256];
char command[64];
char command[264];
if (card != 6)
{
int card2 = card + 1;
Expand Down Expand Up @@ -367,7 +367,7 @@ L1RCTLutWriter::writeEicLutFile(unsigned short card)
{
// try timestamp
char filename[256];
char command[64];
char command[264];
if (card != 6)
{
int card2 = card + 1;
Expand Down Expand Up @@ -413,7 +413,7 @@ void
L1RCTLutWriter::writeJscLutFile()
{
char filename[256];
char command[64];
char command[264];
sprintf(filename, "JSC-%s.dat", keyName_.c_str() );

// open file; if it already existed, delete existing content
Expand Down