changeset 585:0c8ca6fd0832 libavutil

Initialize variable to silence the warning: libavutil/pca.c:72: warning: ¡Æk¡Ç may be used uninitialized in this function
author diego
date Fri, 31 Oct 2008 06:52:37 +0000
parents 1edaa4382343
children 316f011e6da0
files pca.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/pca.c	Sun Oct 26 15:21:45 2008 +0000
+++ b/pca.c	Fri Oct 31 06:52:37 2008 +0000
@@ -67,7 +67,8 @@
 }
 
 int ff_pca(PCA *pca, double *eigenvector, double *eigenvalue){
-    int i, j, k, pass;
+    int i, j, pass;
+    int k=0;
     const int n= pca->n;
     double z[n];