CLuaInstance: fix format strings

Origin commit data
------------------
Branch: ni/coolstream
Commit: 9a346f8d25
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2014-01-21 (Tue, 21 Jan 2014)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Michael Liebmann
2014-01-21 01:39:30 +01:00
parent c980278eb1
commit 56ed327449

View File

@@ -601,7 +601,7 @@ int CLuaInstance::GetInput(lua_State *L)
/* TODO: I'm not sure if this works... */ /* TODO: I'm not sure if this works... */
if (msg != CRCInput::RC_timeout && msg > CRCInput::RC_MaxRC) if (msg != CRCInput::RC_timeout && msg > CRCInput::RC_MaxRC)
{ {
DBG("CLuaInstance::%s: msg 0x%08lx data 0x%08lx\n", __func__, msg, data); DBG("CLuaInstance::%s: msg 0x%08"PRIx32" data 0x%08"PRIx32"\n", __func__, msg, data);
CNeutrinoApp::getInstance()->handleMsg(msg, data); CNeutrinoApp::getInstance()->handleMsg(msg, data);
} }
/* signed int is debatable, but the "big" messages can't yet be handled /* signed int is debatable, but the "big" messages can't yet be handled