# HG changeset patch # User William Morgan # Date 1245896136 0 # Node ID 9749109b3198c7f3036f4813d41044ae82223ee9 # Parent 8b2b3f4a2a588d990702a1d3beba1fa0b6a861d3 Fixed spelling error in parser error message. diff -r 8b2b3f4a2a58 -r 9749109b3198 parser.c --- a/parser.c Wed Jun 24 23:56:49 2009 -0400 +++ b/parser.c Thu Jun 25 02:15:36 2009 +0000 @@ -703,7 +703,7 @@ if(worker_expr && num_inputs < expected_in) { if(block_attach) - printf("Warning: Worker %s is attached to block both explicityly and implicity (i.e. at least one input was stated as ~, but there are still unsatisfied inputs)\n", workername); + printf("Warning: Worker %s is attached to block both explicitly and implicitly (i.e. at least one input was stated as ~, but there are still unsatisfied inputs)\n", workername); if(expected_in - num_inputs > 1) printf("Warning: More than one input of worker %s implicitly tied to block (%d inputs implicitly tied)", workername, expected_in - num_inputs); for(i = num_inputs; i < expected_in; ++i)