Commit ee819135 authored by Barry Perlman's avatar Barry Perlman Committed by Yoni Fogel

Closes [t:2577] Fixed unitialized variable.


git-svn-id: file:///svn/toku/tokudb@19914 c7de825b-a66e-492c-adef-691d508d4ae1
parent ac739077
...@@ -93,7 +93,7 @@ count_temp(char * dirname) { ...@@ -93,7 +93,7 @@ count_temp(char * dirname) {
// print contents of directory // print contents of directory
int int
print_dir(char * dirname) { print_dir(char * dirname) {
int n; int n = 0;
DIR * dir = opendir(dirname); DIR * dir = opendir(dirname);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment