Skip to content
Snippets Groups Projects
Commit 5659bc49 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Resolve warning C4090: 'initializing': different 'const' qualifiers

parent 0611a798
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
...@@ -50,7 +50,7 @@ char* comVersion(char* str, size_t len) ...@@ -50,7 +50,7 @@ char* comVersion(char* str, size_t len)
COM_HANDLE comOpen(const char* device) COM_HANDLE comOpen(const char* device)
{ {
char *dp = device; char *dp = (char*)device;
COM_HANDLE handle; COM_HANDLE handle;
COMMTIMEOUTS timeouts; COMMTIMEOUTS timeouts;
DCB dcb; DCB dcb;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment