Skip to content

Commit

Permalink
eCAL_Finalize(eCAL_Init_All) -> eCAL_Finalize()
Browse files Browse the repository at this point in the history
  • Loading branch information
rex-schilasky committed Dec 5, 2024
1 parent ec86702 commit 01495dd
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions ecal/samples/c/pubsub/string/minimal_rec/src/minimal_rec.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* ========================= eCAL LICENSE =================================
*
* Copyright (C) 2016 - 2019 Continental Corporation
* Copyright (C) 2016 - 2024 Continental Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -54,7 +54,7 @@ int main(int argc, char **argv)
eCAL_Sub_Destroy(sub);

// finalize eCAL API
eCAL_Finalize(eCAL_Init_All);
eCAL_Finalize();

return(0);
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* ========================= eCAL LICENSE =================================
*
* Copyright (C) 2016 - 2019 Continental Corporation
* Copyright (C) 2016 - 2024 Continental Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -53,7 +53,7 @@ int main(int argc, char **argv)
eCAL_Sub_Destroy(sub);

// finalize eCAL API
eCAL_Finalize(eCAL_Init_All);
eCAL_Finalize();

return(0);
}
4 changes: 2 additions & 2 deletions ecal/samples/c/pubsub/string/minimal_snd/src/minimal_snd.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* ========================= eCAL LICENSE =================================
*
* Copyright (C) 2016 - 2019 Continental Corporation
* Copyright (C) 2016 - 2024 Continental Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -47,7 +47,7 @@ int main(int argc, char **argv)
}

// finalize eCAL API
eCAL_Finalize(eCAL_Init_All);
eCAL_Finalize();

return(0);
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* ========================= eCAL LICENSE =================================
*
* Copyright (C) 2016 - 2019 Continental Corporation
* Copyright (C) 2016 - 2024 Continental Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -71,7 +71,7 @@ int main(int argc, char **argv)
eCAL_Client_Destroy(hclient);

// finalize eCAL API
eCAL_Finalize(eCAL_Init_All);
eCAL_Finalize();

return(0);
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* ========================= eCAL LICENSE =================================
*
* Copyright (C) 2016 - 2019 Continental Corporation
* Copyright (C) 2016 - 2024 Continental Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -71,7 +71,7 @@ int main(int argc, char **argv)
eCAL_Server_Destroy(hserver);

// finalize eCAL API
eCAL_Finalize(eCAL_Init_All);
eCAL_Finalize();

return(0);
}

0 comments on commit 01495dd

Please sign in to comment.