aboutsummaryrefslogtreecommitdiff
path: root/include/ejit/ejit.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ejit/ejit.h')
-rw-r--r--include/ejit/ejit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ejit/ejit.h b/include/ejit/ejit.h
index ce7260b..6e42f15 100644
--- a/include/ejit/ejit.h
+++ b/include/ejit/ejit.h
@@ -254,7 +254,7 @@ static inline struct ejit_arg ejit_pointer(void *p)
static inline struct ejit_arg ejit_float(float a)
{
- return (struct ejit_arg){.d = a, .type = EJIT_FLOAT};
+ return (struct ejit_arg){.f = a, .type = EJIT_FLOAT};
}
static inline struct ejit_arg ejit_double(double a)