From 7c00bf11fd1ac8211c8f0a94e71d6944e7a41796 Mon Sep 17 00:00:00 2001 From: Mark Charlebois Date: Wed, 3 Jun 2015 21:00:40 -0700 Subject: [PATCH] remove long long from union param_value_u The long long was mistakenly added when debugging an alignment issue on x86_64. Signed-off-by: Mark Charlebois --- src/modules/systemlib/param/param.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/modules/systemlib/param/param.h b/src/modules/systemlib/param/param.h index 04a37a229a..af9585eb42 100644 --- a/src/modules/systemlib/param/param.h +++ b/src/modules/systemlib/param/param.h @@ -382,7 +382,6 @@ union param_value_u { void *p; int32_t i; float f; - long long x; }; /**