Ticket #36812: clang.patch
File clang.patch, 731 bytes (added by qqshfox@…, 12 years ago) |
---|
-
src/libpocketsphinx/fsg_search.c
old new 260 260 261 261 /* Nothing to update */ 262 262 if (fsgs->fsg == NULL) 263 return;263 return 0; 264 264 265 265 /* Update the number of words (not used by this module though). */ 266 266 search->n_words = dict_size(dict); -
src/libpocketsphinx/ngram_search.c
old new 279 279 ps_search_base_reinit(search, dict, d2p); 280 280 281 281 if (ngs->lmset == NULL) 282 return;282 return 0; 283 283 284 284 /* Update beam widths. */ 285 285 ngram_search_calc_beams(ngs);