Removed some leftover code.

This commit is contained in:
Pietro Gagliardi 2019-06-09 21:18:31 -04:00
parent 97e37e5831
commit 05b1e26ee2
1 changed files with 1 additions and 4 deletions

View File

@ -12,13 +12,10 @@ struct errorCase {
static void handleProgrammerError(const char *msg, void *data)
{
struct errorCase *c = (struct errorCase *) data;
size_t n;
c->caught = true;
if (strcmp(msg, c->msgWant) != 0) {
n = strlen(msg);
if (strcmp(msg, c->msgWant) != 0)
c->msgGot = testingUtilStrdup(msg);
}
}
static void deferResetProgrammerError(testingT *t, void *data)