Skip to content

Commit

Permalink
Update src/flisp/read.c: rm whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
inkydragon authored May 10, 2023
1 parent 7db1169 commit 53644e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/flisp/read.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ int isnumtok_base(fl_context_t *fl_ctx, char *tok, value_t *pval, int base)
if (pval) {
// NOTE(#49689): DO NOT convert double to float directly,
// indirect conversion (string->double->float) will lose precision.
f = jl_strtof_c(tok, &end);
f = jl_strtof_c(tok, &end);
*pval = mk_float(fl_ctx, f);
}
return 1;
Expand Down

0 comments on commit 53644e3

Please sign in to comment.