sphinx-speech-engine: tabulation (eliminating some extra spaces)
authorJanos Kovacs <jankovac503@gmail.com>
Thu, 6 Jun 2013 13:37:49 +0000 (16:37 +0300)
committerKrisztian Litkey <krisztian.litkey@intel.com>
Thu, 6 Jun 2013 13:51:41 +0000 (16:51 +0300)
src/plugins/sphinx-speech-engine/utterance.c

index 1e04c3b..af9c1dc 100644 (file)
@@ -236,7 +236,7 @@ static void fsg_processor(context_t *ctx,
 
     lmath = ps_get_logmath(dec->ps);
     hyp = ps_get_hyp(dec->ps, &score, &uttid);
-    prob  = logmath_exp(lmath, score);
+    prob = logmath_exp(lmath, score);
 
     cand = cands;
     cand->score = 1.0;
@@ -259,7 +259,7 @@ static void fsg_processor(context_t *ctx,
 
             goto handle_destination_node;
 
-            while ((lnk  = ps_lattice_traverse_next(dag, NULL))) {
+            while ((lnk = ps_lattice_traverse_next(dag, NULL))) {
 
               handle_destination_node:
                 nod = ps_latlink_nodes(lnk, NULL);