kvm: Fix compilation warning

This patch fixes the following compilation warning:

  main.c: In function ‘main’:
  main.c:149: warning: label ‘out’ defined but not used

Reported-by: Cyrill Gorcunov <gorcunov@gmail.com>
Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
This commit is contained in:
Pekka Enberg
2010-07-04 14:13:20 +03:00
committed by Will Deacon
parent 62ef45dc93
commit 11e9d907bb
-1
View File
@@ -146,7 +146,6 @@ exit_kvm:
kvm__show_registers(kvm);
kvm__show_code(kvm);
kvm__show_page_tables(kvm);
out:
kvm__delete(kvm);
return 0;