Skip to content

Commit

Permalink
minor typo fix for arm64/apple
Browse files Browse the repository at this point in the history
  • Loading branch information
dadler committed Jul 21, 2015
1 parent ac1f5a4 commit a226e09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dyncall/dyncall_callvm_arm64_apple.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ static void var_char (DCCallVM* in_p, DCchar x) { var_i64( in_p, ((DClonglon
static void var_short (DCCallVM* in_p, DCshort x) { var_i64( in_p, ((DClonglong) x) ); }
static void var_int (DCCallVM* in_p, DCint x) { var_i64( in_p, ((DClonglong) x) ); }
static void var_long (DCCallVM* in_p, DClong x) { var_i64( in_p, ((DClonglong) x) ); }
static void var_double (DCCallVM* in_p, DCdouble in_x) {
static void var_double (DCCallVM* in_p, DCdouble x) {
DCCallVM_arm64* p = (DCCallVM_arm64*)in_p;
dcVecAlign(&p->mVecHead, sizeof(DCdouble));
dcVecAppend(&p->mVecHead, &x, sizeof(DCdouble));
Expand Down

0 comments on commit a226e09

Please sign in to comment.