From: Philip Soltero Date: Wed, 19 Aug 2009 01:58:38 +0000 (-0500) Subject: Added missing string delimiter. X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?p=palacios.git;a=commitdiff_plain;h=44cd68a3f5ee32889b833931af00adfb1a54f109 Added missing string delimiter. Even though this code isn't compiled, it was causing my build to fail with this error: CC palacios/src/palacios/svm.o palacios/src/palacios/svm.c:574:54: error: missing terminating " character --- diff --git a/palacios/src/palacios/svm.c b/palacios/src/palacios/svm.c index 8c2e2d7..4a2d3b9 100644 --- a/palacios/src/palacios/svm.c +++ b/palacios/src/palacios/svm.c @@ -571,7 +571,7 @@ void v3_init_SVM(struct v3_ctrl_ops * vmm_ops) { "movq %%rcx, %%rax ; " vmload "rdtsc ; " - : "=D"(start_hi), "=S"(start_lo), "=a"(end_lo),d"(end_hi) + : "=D"(start_hi), "=S"(start_lo), "=a"(end_lo),"=d"(end_hi) : "c"(host_vmcb), "0"(0), "1"(0), "2"(0), "3"(0) );