From 494eadf95c682695a43407ee88a05e6a1f69861b Mon Sep 17 00:00:00 2001 From: Nach Date: Wed, 14 Nov 2007 09:25:46 +0000 Subject: [PATCH] More fixes. git-svn-id: https://svn.code.sf.net/p/vbam/code/trunk@63 a31d4220-a93d-0410-bf67-fe4944624d44 --- src/remote.cpp | 4 ++-- src/snd_interp.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/remote.cpp b/src/remote.cpp index d673a553..85efd54c 100644 --- a/src/remote.cpp +++ b/src/remote.cpp @@ -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); diff --git a/src/snd_interp.h b/src/snd_interp.h index f9b22ba9..ca9cf348 100644 --- a/src/snd_interp.h +++ b/src/snd_interp.h @@ -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 \ No newline at end of file +#endif