From 54042bcf24b6c7c1c99f7a022f3cd00ba338f708 Mon Sep 17 00:00:00 2001 From: aliguori Date: Fri, 27 Feb 2009 22:16:47 +0000 Subject: Remove some warnings and fix windows build. Initialize some variables to make GCC happy and switch from using index to strchr. index is not available on Windows. Signed-off-by: Anthony Liguori git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6653 c046a42c-6fe2-441c-8c8c-71466251a162 --- vl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vl.c') diff --git a/vl.c b/vl.c index 8e59cd8..1d96a31 100644 --- a/vl.c +++ b/vl.c @@ -4641,8 +4641,8 @@ int main(int argc, char **argv, char **envp) const char *pid_file = NULL; int autostart; const char *incoming = NULL; - int fd; - struct passwd *pwd; + int fd = 0; + struct passwd *pwd = NULL; const char *chroot_dir = NULL; const char *run_as = NULL; -- cgit v1.1