fix bad order in arguments.
This commit is contained in:
parent
6a0d5c303d
commit
4363b53c4d
@ -67,7 +67,7 @@ typedef struct list_ctx
|
|||||||
static inline void
|
static inline void
|
||||||
addSmallIntList(list_ctx *ctx, int value)
|
addSmallIntList(list_ctx *ctx, int value)
|
||||||
{
|
{
|
||||||
ctx->gstore = YAP_ExtendList(YAP_MkIntTerm(value),ctx->gstore);
|
ctx->gstore = YAP_ExtendList(ctx->gstore,YAP_MkIntTerm(value));
|
||||||
}
|
}
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
Reference in New Issue
Block a user