Fixes for buliding for 32bit targets:
  * u32/u64/uword mismatches
  * pointer-to-int fixes
  * printf formatting issues
  * issues with incorrect "ULL" and related suffixes
  * structure alignment and padding issues

Change-Id: I70b989007758755fe8211c074f651150680f60b4
Signed-off-by: David Johnson <davijoh3@cisco.com>
diff --git a/src/vcl/sock_test_client.c b/src/vcl/sock_test_client.c
index 7898797..fb71cd7 100644
--- a/src/vcl/sock_test_client.c
+++ b/src/vcl/sock_test_client.c
@@ -157,8 +157,9 @@
       _rfdset = rd_fdset;
 
 #ifdef VCL_TEST
-      rv = vppcom_select (nfds, (uint64_t *) rfdset, (uint64_t *) wfdset,
-			  NULL, 0);
+      rv =
+	vppcom_select (nfds, (unsigned long *) rfdset,
+		       (unsigned long *) wfdset, NULL, 0);
 #else
       {
 	struct timeval timeout;
@@ -417,8 +418,9 @@
       _rfdset = rd_fdset;
 
 #ifdef VCL_TEST
-      rv = vppcom_select (nfds, (uint64_t *) rfdset, (uint64_t *) wfdset,
-			  NULL, 0);
+      rv =
+	vppcom_select (nfds, (unsigned long *) rfdset,
+		       (unsigned long *) wfdset, NULL, 0);
 #else
       {
 	struct timeval timeout;