Browse Source

one change, signed to unsigned

richarddobson 3 tuần trước cách đây
mục cha
commit
a30e93111c
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      dev/standnew/envspeak.c

+ 1 - 1
dev/standnew/envspeak.c

@@ -2476,7 +2476,7 @@ int create_sndbufs_for_envel(dataptr dz)
     
     {  // RWD 13/23: debugging, looking for use of uninitialized memory
         unsigned int fbufsize = bigbufsize / sizeof(float);
-        int i;
+        unsigned int i;
         for(i=0; i < fbufsize;i++)
             dz->bigbuf[i] = 0.0f;  // set to 1.0 to show anomalies
     }