diff options
-rw-r--r-- | src/core/lt_path.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/core/lt_path.c b/src/core/lt_path.c index 01de5b6..3609d2c 100644 --- a/src/core/lt_path.c +++ b/src/core/lt_path.c @@ -358,15 +358,15 @@ int lt_dlpathopen(const char * module, const char ** extv) } static struct lt_modctx * lt_dlopen_locked( - const char * module, - const char ** extv, - int mode) + const char * module, + const char ** extv, + int mode) { - int fdmod; - char * mpath; - void * maddr; - struct lt_modctx * modctx; - struct lt_modctx * modctx_buf; + int fdmod; + char * mpath; + void * maddr; + struct lt_modctx * modctx; + struct lt_modctx * modctx_buf; /* path open */ if ((fdmod = lt_dlpathopen_locked(module,extv,&mpath)) < 0) @@ -403,10 +403,10 @@ static struct lt_modctx * lt_dlopen_locked( } /* module entry */ - modctx = lt_modv_next; - modctx->maddr = maddr; - modctx->mpath = mpath; - modctx->mrefs = 1; + modctx = lt_modv_next; + modctx->maddr = maddr; + modctx->mpath = mpath; + modctx->mrefs = 1; lt_modv_next++; /* add to list */ |