More fixes.
This commit is contained in:
parent
6661cf8363
commit
8e0382d2f0
|
@ -226,9 +226,9 @@ void remoteInit()
|
||||||
remoteInitFnc();
|
remoteInitFnc();
|
||||||
}
|
}
|
||||||
|
|
||||||
void remotePutPacket(char *packet)
|
void remotePutPacket(const char *packet)
|
||||||
{
|
{
|
||||||
char *hex = "0123456789abcdef";
|
const char *hex = "0123456789abcdef";
|
||||||
char buffer[1024];
|
char buffer[1024];
|
||||||
|
|
||||||
size_t count = strlen(packet);
|
size_t count = strlen(packet);
|
||||||
|
|
Loading…
Reference in New Issue