Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions phasta/phBubble.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,10 @@ typedef std::vector<Bubble> Bubbles;

void readBubbles(Bubbles& bubbles, std::string bubbleFileName)
{
char bubblefname[1024];
FILE *filebubble;
Bubble readbubble;

sprintf(bubblefname,bubbleFileName.c_str());
const char* bubblefname = bubbleFileName.c_str();
if (!PCU_Comm_Self())
printf("reading bubbles info from %s\n",bubblefname);

Expand Down