From ad4b14fcd7132e1389481dc8c5dd8fe8ebc80ba2 Mon Sep 17 00:00:00 2001
From: Arnaud Blanchard <arnaud.blanchard@ensea.fr>
Date: Thu, 14 Oct 2021 12:19:10 +0200
Subject: [PATCH] link to the lib blc and not libblc_channel

---
 python/blc_channel.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/python/blc_channel.py b/python/blc_channel.py
index 8b11fc3..0ae6c5a 100644
--- a/python/blc_channel.py
+++ b/python/blc_channel.py
@@ -12,7 +12,7 @@ class BlcChannel:
         blc_channel wrapper.
     """
     # Bind blc_channel methods
-    lib_path = find_library("blc_channel")
+    lib_path = find_library("blc")
     lib = CDLL(lib_path)
     lib.blc_channel_new.restype = c_void_p
     lib.blc_channel_delete.argtypes = [ c_void_p ]
@@ -120,7 +120,7 @@ class BlcChannel:
     def post_ack_data(self):
         BlcChannel.lib.blc_channel_post_ack_data(self.channel)
     
-    def remove(self):
+    def remove(self): 
         BlcChannel.lib.blc_channel_remove(self.channel)
     
     def __del__(self):
-- 
GitLab