summaryrefslogtreecommitdiffstats
path: root/ucs2-interface/ucs_vol_interf.c
diff options
context:
space:
mode:
authortkummermehr <thorsten.kummermehr@k2l.de>2017-07-14 10:17:31 +0200
committerGitHub <noreply@github.com>2017-07-14 10:17:31 +0200
commitf4b34a4b00dc0983ae8f9a56828c2bc86ac11c7f (patch)
tree1c1318a7532c91532ea1a369e3ae3a74ceaa7f63 /ucs2-interface/ucs_vol_interf.c
parent2d039f447c2b91ae5e41406238eea3950436c714 (diff)
parentdbbd5b4964615a63205fb9433f827f67265541de (diff)
Merge pull request #6 from tkummermehr/UCS_Interface_Cleanup
Add new features to ucs2-interface and cleaned up API
Diffstat (limited to 'ucs2-interface/ucs_vol_interf.c')
-rw-r--r--ucs2-interface/ucs_vol_interf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ucs2-interface/ucs_vol_interf.c b/ucs2-interface/ucs_vol_interf.c
index f681ba4..ecd09de 100644
--- a/ucs2-interface/ucs_vol_interf.c
+++ b/ucs2-interface/ucs_vol_interf.c
@@ -46,7 +46,7 @@ void UCSI_Vol_Service (UCSI_Data_t *pPriv) {
UCSI_channelsT *UCSI_Vol_Init (UCSI_Data_t *pPriv, UCSI_VolumeServiceCB_t serviceCB) {
int err;
- err = lib_most_volume_init(pPriv->UNICENS, (lib_most_volume_service_cb_t) serviceCB);
+ err = lib_most_volume_init(pPriv->unicens, (lib_most_volume_service_cb_t) serviceCB);
if (err) return (NULL);
else return (ucsiChannels);
}