From 7bf699317015b26ca33b98deac1690532db288e8 Mon Sep 17 00:00:00 2001 From: Reuben Thomas Date: Thu, 25 Jan 2018 15:37:38 +0000 Subject: [PATCH] combine.c: fix missing white space --- src/combine.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/combine.c b/src/combine.c index 43c910f..c97c0af 100644 --- a/src/combine.c +++ b/src/combine.c @@ -330,7 +330,7 @@ prepare_shifted_state (struct state *state, unsigned character, state = (struct state *) hash_lookup (table, &lookup); if (!state) { - if (state= (struct state *) malloc (sizeof (struct state)), !state) + if (state = (struct state *) malloc (sizeof (struct state)), !state) return NULL; state->character = character; -- 2.50.1