kernel/x86: add space between literal and identifier

Due to introduction of user-defined suffixes C++11 requires that there
is a space between literal and identifier to avoid ambiguity.
This commit is contained in:
Pawel Dziepak
2014-05-06 14:59:53 +02:00
parent cd59bf4349
commit 2b6d4bc657
@@ -18,7 +18,7 @@
//#define TRACE_PRT
#ifdef TRACE_PRT
# define TRACE(x...) dprintf("IRQRoutingTable: "x)
# define TRACE(x...) dprintf("IRQRoutingTable: " x)
#else
# define TRACE(x...)
#endif