E: e_sys_main: Fix 'mp may be used uninitialized' warning.

SVN revision: 59601
This commit is contained in:
Christopher Michael 2011-05-22 17:08:07 +00:00
parent 3239c1875c
commit 0fe304a4bc
1 changed files with 2 additions and 2 deletions

View File

@ -126,8 +126,8 @@ main(int argc,
if (mnt)
{
Eina_Strbuf *buf;
int ret;
const char *mp;
int ret = 0;
const char *mp = NULL;
buf = eina_strbuf_new();
if (!buf) goto err;