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 <charlebm@gmail.com>
This commit is contained in:
Mark Charlebois
2015-06-03 21:00:40 -07:00
parent 3dbd48fbad
commit 7c00bf11fd
-1
View File
@@ -382,7 +382,6 @@ union param_value_u {
void *p;
int32_t i;
float f;
long long x;
};
/**