summaryrefslogtreecommitdiff
path: root/libpcsxcore/debug.c
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-07-09 06:19:35 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-07-09 06:19:35 +0000
commitfd6e2e2b6ccb5474df022d76c9b9c23508ba787d (patch)
tree2f90db9624e789e0169659bad1f165e5a34f21db /libpcsxcore/debug.c
parent302832eabec2f062591162840da9dbe9a127f780 (diff)
downloadpcsxr-fd6e2e2b6ccb5474df022d76c9b9c23508ba787d.tar.gz
Fix some minor warnings on SysPrintf and SysMessage use in libpcsxcore.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@85929 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'libpcsxcore/debug.c')
-rwxr-xr-xlibpcsxcore/debug.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libpcsxcore/debug.c b/libpcsxcore/debug.c
index 99d2a53a..2a9bd5a4 100755
--- a/libpcsxcore/debug.c
+++ b/libpcsxcore/debug.c
@@ -318,23 +318,23 @@ void StartDebugger() {
MemoryMap = (u8 *)malloc(0x200000);
if (MemoryMap == NULL) {
- SysMessage(_("Error allocating memory"));
+ SysMessage("%s", _("Error allocating memory"));
return;
}
if (StartServer() == -1) {
- SysPrintf(_("Unable to start debug server.\n"));
+ SysPrintf("%s", _("Unable to start debug server.\n"));
return;
}
- SysPrintf(_("Debugger started.\n"));
+ SysPrintf("%s", _("Debugger started.\n"));
debugger_active = 1;
}
void StopDebugger() {
if (debugger_active) {
StopServer();
- SysPrintf(_("Debugger stopped.\n"));
+ SysPrintf("%s", _("Debugger stopped.\n"));
}
if (MemoryMap != NULL) {