get_included_files() should return a list of included, files.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2018-08-18 20:42:54 +02:00
parent 00dc23ee4a
commit cbb4a0aa5c
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 1 additions and 1 deletions

View File

@ -10597,7 +10597,7 @@ static int vm_builtin_get_include_path(ph7_context *pCtx, int nArg, ph7_value **
* Included paths as a string
*/
static int vm_builtin_get_included_files(ph7_context *pCtx, int nArg, ph7_value **apArg) {
SySet *pFiles = &pCtx->pVm->aFiles;
SySet *pFiles = &pCtx->pVm->aIncluded;
ph7_value *pArray, *pWorker;
SyString *pEntry;
int c, d;