Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


Linux user updates for more recent distros (Ubuntu 14.04 as target)
[palacios.git] / linux_usr / v3_free.c
index 1299269..c7393d1 100644 (file)
@@ -23,10 +23,10 @@ int main(int argc, char* argv[]) {
 
     vm_idx = strtol(idx, NULL, 0);
 
-    printf("Freeing VM %d\n", vm_idx);
+    printf("Freeing VM %lu\n", vm_idx);
     
     if (v3_dev_ioctl(V3_FREE_GUEST, (void*)vm_idx) < 0) {
-        fprintf(stderr, "Error freeing VM %d (%s)\n", vm_idx,argv[1]);
+        fprintf(stderr, "Error freeing VM %lu (%s)\n", vm_idx,argv[1]);
         return -1;
     }