1
0
mirror of https://frontier.innolan.net/rainlance/amiga-ntimed.git synced 2025-11-21 08:51:35 +00:00

Use nan("") instead of NAN macro, in the hope that ancient CentOS

likes that better.
This commit is contained in:
Poul-Henning Kamp
2015-01-04 15:44:17 +00:00
parent f0007519ab
commit 9caeb38a6f

View File

@ -200,7 +200,7 @@ CD_AddSource(struct combine_delta *cd, const char *name1, const char *name2)
ALLOC_OBJ(cs, CD_SOURCE_MAGIC);
AN(cs);
cs->cd = cd;
cs->low = cs->mid = cs->high = NAN;
cs->low = cs->mid = cs->high = nan("");
TAILQ_INSERT_TAIL(&cd->head, cs, list);
INIT_OBJ(&cs->combiner, COMBINER_MAGIC);