Skip to content

Commit

Permalink
Buildfix for gcc.
Browse files Browse the repository at this point in the history
At least our Travis gccs are hitting an ICE.
  • Loading branch information
unknownbrackets committed Jun 12, 2016
1 parent b0ac553 commit c0c43ac
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Core/Reporting.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ namespace Reporting
int int2;
int int3;
};
static Payload payloadBuffer[PAYLOAD_BUFFER_SIZE] = {};
static Payload payloadBuffer[PAYLOAD_BUFFER_SIZE];
static int payloadBufferPos = 0;

// Returns the full host (e.g. report.ppsspp.org:80.)
Expand Down Expand Up @@ -353,6 +353,9 @@ namespace Reporting
postdata.Finish();
SendReportRequest("/report/compat", postdata.ToString(), postdata.GetMimeType());
break;

case RequestType::NONE:
break;
}

payload.type = RequestType::NONE;
Expand Down

0 comments on commit c0c43ac

Please sign in to comment.