toolbox: Fix uninitalized stack variable in mount.

Signed-off-by: Dima Zavin <dima@android.com>
This commit is contained in:
Dima Zavin 2009-06-29 15:50:20 -07:00
parent 5e924468cd
commit 383688b52f

View file

@ -223,7 +223,7 @@ int mount_main(int argc, char *argv[])
{
char *type = NULL;
int c;
int loop;
int loop = 0;
progname = argv[0];
rwflag = MS_VERBOSE;