summaryrefslogtreecommitdiffstats
path: root/ucs2-interface/ucs_vol_interf.c
diff options
context:
space:
mode:
authortkummermehr <thorsten.kummermehr@k2l.de>2017-07-13 22:32:54 +0200
committertkummermehr <thorsten.kummermehr@k2l.de>2017-07-13 22:32:54 +0200
commitfe0ce6f9892d29da52a4ed5024ebe9d5964c0171 (patch)
treec2ac96c5a99de5c2702cfc57e5723c38619b7337 /ucs2-interface/ucs_vol_interf.c
parent4b64b8ea3d055bf3b1af751b399b3a9e1d0baa2b (diff)
Added 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);
}