# HG changeset patch # User jbe # Date 1363614521 -3600 # Node ID eda6362598465042609452aae9ce60745234dd28 # Parent fc1a491eb916ee31f49ef4cc3753ca65b1e7fdcd Removed excessive space characters in lf_update_suggestion_order.c diff -r fc1a491eb916 -r eda636259846 lf_update_suggestion_order.c --- a/lf_update_suggestion_order.c Mon Mar 18 14:06:40 2013 +0100 +++ b/lf_update_suggestion_order.c Mon Mar 18 14:48:41 2013 +0100 @@ -63,8 +63,8 @@ if (visit == postorder || visit == leaf) { struct candidate *candidate; candidate = candidates + (candidate_count++); - candidate->key = *candidate_key; - candidate->seat = 0; + candidate->key = *candidate_key; + candidate->seat = 0; if (logging) printf("Candidate #%i is suggestion #%s.\n", candidate_count, candidate->key); } }