elementary: Fix uninitialized variable warning

Signed-off-by: Mike McCormack <mikem@atratus.org>

SVN revision: 77101
This commit is contained in:
Mike McCormack 2012-09-26 19:53:53 +00:00 committed by Mike McCormack
parent b62163cd47
commit 33b0007e16
1 changed files with 1 additions and 1 deletions

View File

@ -739,7 +739,7 @@ int
main(int argc, char *argv[])
{
Eina_Bool quit_option = EINA_FALSE;
char *source, *header;
char *source = NULL, *header = NULL;
int arg_index, ret = 0;
Ecore_Getopt_Value values[] = {
ECORE_GETOPT_VALUE_STR(prefix),