You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by cd...@apache.org on 2022/11/22 08:10:09 UTC

[plc4x] branch develop updated: fix(plc4x): Fixed a naming issue with one of the source-files

This is an automated email from the ASF dual-hosted git repository.

cdutz pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git


The following commit(s) were added to refs/heads/develop by this push:
     new 0bb2b4ba9c fix(plc4x): Fixed a naming issue with one of the source-files
0bb2b4ba9c is described below

commit 0bb2b4ba9c34d62464c84dfb3e9509b10a6a4181
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Tue Nov 22 09:09:59 2022 +0100

    fix(plc4x): Fixed a naming issue with one of the source-files
---
 plc4c/drivers/s7/CMakeLists.txt                                         | 2 +-
 .../s7/src/{driver_modbus_encode_decode.c => driver_s7_encode_decode.c} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/plc4c/drivers/s7/CMakeLists.txt b/plc4c/drivers/s7/CMakeLists.txt
index ec1c29ef41..0046fcbfd8 100644
--- a/plc4c/drivers/s7/CMakeLists.txt
+++ b/plc4c/drivers/s7/CMakeLists.txt
@@ -22,7 +22,7 @@ file(GLOB generatedSources "../../generated-sources/s7/src/*.c")
 
 add_library(plc4c-driver-s7
         src/driver_s7.c
-        src/driver_modbus_encode_decode.c
+        src/driver_s7_encode_decode.c
         src/driver_s7_packets.c
         src/driver_s7_sm_connect.c
         src/driver_s7_sm_disconnect.c
diff --git a/plc4c/drivers/s7/src/driver_modbus_encode_decode.c b/plc4c/drivers/s7/src/driver_s7_encode_decode.c
similarity index 100%
rename from plc4c/drivers/s7/src/driver_modbus_encode_decode.c
rename to plc4c/drivers/s7/src/driver_s7_encode_decode.c