More fixes.

This commit is contained in:
Nach 2007-11-14 09:25:46 +00:00
parent 6661cf8363
commit 8e0382d2f0
2 changed files with 3 additions and 3 deletions

View File

@ -226,9 +226,9 @@ void remoteInit()
remoteInitFnc();
}
void remotePutPacket(char *packet)
void remotePutPacket(const char *packet)
{
char *hex = "0123456789abcdef";
const char *hex = "0123456789abcdef";
char buffer[1024];
size_t count = strlen(packet);

View File

@ -32,4 +32,4 @@ void interp_reset(int ch);
inline void interp_push(int ch, int sample);
inline int interp_pop(int ch, double rate); */
#endif
#endif