hugpages: fix compilation error
authorMaryam Tahhan <maryam.tahhan@intel.com>
Tue, 19 Jul 2016 12:14:19 +0000 (13:14 +0100)
committerMaryam Tahhan <maryam.tahhan@intel.com>
Tue, 19 Jul 2016 12:14:19 +0000 (13:14 +0100)
Fix error: format '%lu' expects type 'long unsigned int', but
argument 6 has type 'derive_t'. For line 93.

Change-Id: I4f164d238cd4fa6f8a69d78b2906042aa3c5da72
Signed-off-by: Maryam Tahhan <maryam.tahhan@intel.com>
src/hugepages.c

index db18de0..fb736a6 100644 (file)
@@ -90,7 +90,7 @@ static void submit_one (const char *plug_inst, const char *type,
     sstrncpy (vl.type_instance, type_instance, sizeof (vl.type_instance));
   }
 
-  DEBUG("submit_one pl_inst:%s, inst_type %s, type %s, val=%lu",
+  DEBUG("submit_one pl_inst:%s, inst_type %s, type %s, val=%"PRIu64"",
       plug_inst, type_instance, type, value);
 
   plugin_dispatch_values (&vl);