Skip to content
This repository was archived by the owner on Jun 9, 2022. It is now read-only.

Commit 3478c97

Browse files
author
nshmyrev
committed
Fixes warning about unsigned comparision
Thanks to Halle Winkler git-svn-id: svn+ssh://svn.code.sf.net/p/cmusphinx/code/trunk/sphinxbase@12602 94700074-3cef-4d97-a70e-9c8c206c02f5
1 parent ff2a8c4 commit 3478c97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sphinx_fe/sphinx_fe.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -441,8 +441,8 @@ static int
441441
decode_pcm(sphinx_wave2feat_t *wtf)
442442
{
443443
size_t nsamp;
444-
int32 nfr, nchans, whichchan;
445-
uint32 nfloat, n;
444+
int32 n, nfr, nchans, whichchan;
445+
uint32 nfloat;
446446

447447
nchans = cmd_ln_int32_r(wtf->config, "-nchans");
448448
whichchan = cmd_ln_int32_r(wtf->config, "-whichchan");

0 commit comments

Comments
 (0)